mirror of
https://github.com/fadden/6502bench.git
synced 2025-07-30 00:24:08 +00:00
Data Bank Register management, part 5
Update documentation. Add some information about OMF relocation data as well. Fix bug in B=K handling.
This commit is contained in:
@@ -1335,7 +1335,7 @@ namespace SourceGen {
|
||||
|
||||
int bank;
|
||||
if (curVal == DbrValue.USE_PBR) {
|
||||
bank = mAnattribs[offset].Address >> 16;
|
||||
bank = mAnattribs[offset].Address & 0x00ff0000;
|
||||
} else {
|
||||
Debug.Assert(curVal >= 0 && curVal < 256);
|
||||
bank = curVal << 16;
|
||||
|
Reference in New Issue
Block a user