* core.asm - core hc11 cpu characteristics * Requires bits.asm to also be included ADDRSIZE equ 2 ; Size of an HC11 memory address in bytes * 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