Update README.

This commit is contained in:
Fabien Freling 2015-03-24 11:27:25 +01:00
parent b611dfdd49
commit 5d2d1ca2da
2 changed files with 10 additions and 6 deletions

View file

@ -32,7 +32,7 @@ let get_mem_bank mem addr =
| x when x < 0xFF80 -> mem.io, x - 0xFF00
| x when x < 0xFFFF -> mem.hram, x - 0xFF80
| 0xFFFF -> mem.interrupt, 0
| x -> eprintf "Memory access 0x%08X\n" x;
| x -> eprintf "Memory access 0x%06X\n" x;
failwith "Invalid memory range."