* core.acm - core hc11 cpu characteristics * Sizes of various architectural entities, in bytes. WORDSIZE equ 2 ; Two bytes in a standard HC11 "word". ADDRSIZE equ WORDSIZE ; Size of an HC11 memory address specifier in bytes. JUMPSIZE equ 1+ADDRSIZE ; A jump instruction is a 1-byte opcode plus an address. * Masks for the various flag bits in the CCR (condition code register). SFLAG equ BIT7 XFLAG equ BIT6 HFLAG equ BIT5 IFLAG equ BIT4 NFLAG equ BIT3 ZFLAG equ BIT2 VFLAG equ BIT1 CFLAG equ BIT0