Added long address size
git-svn-id: svn://svn.cc65.org/cc65/trunk@2673 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
5ef1f65c9b
commit
aa7b723b15
2 changed files with 4 additions and 2 deletions
|
@ -52,6 +52,7 @@ const char* AddrSizeToStr (unsigned char AddrSize)
|
|||
case ADDR_SIZE_ZP: return "zeropage";
|
||||
case ADDR_SIZE_ABS: return "absolute";
|
||||
case ADDR_SIZE_FAR: return "far";
|
||||
case ADDR_SIZE_LONG: return "long";
|
||||
default: return "unknown";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -48,6 +48,7 @@
|
|||
#define ADDR_SIZE_ZP 0x01
|
||||
#define ADDR_SIZE_ABS 0x02
|
||||
#define ADDR_SIZE_FAR 0x03
|
||||
#define ADDR_SIZE_LONG 0x04
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue