|
tell me about it, now we know why it took colby so long to even release the read routines.
Some interesting things to note about the H8/539F.
The
The PROM mode memory map runs from 0000-1ffff.
The MCU mode memory map runs from 0000-2ffff.
When we read the ROM, we get the information from H10000-h2ffff.
The information in h0000-h3fff is identical to h10000-h13fff.
The information from h3fff-hffff is not readable in prom mode.
This means when we see an op code targeting that region, it really targets a memory location that is not in the file that we read.
This also means that when we see an op code that targets h1ffff, it really targets hffff in our file.
See Hardware Manual P.509(P.523 in pdf file) Table 18-4
|