0123 BRA 02 0124 ! offset is specified in this byte 0125 BRA FE ! infinite loop 0126 ! offset is specified in this byte 0127 label: INC ! target of first branch
0123 JMP (1000H) ... 1000 67H 1001 45HThis jump transfers execution to the instruction found at location 4567
LDAB 5,X
struct my_object { void * self; /* 16 bits on 6800, offest 0 */ unsigned int refcount; /* 16 bits on 6800, offest 2 */ unsigned char initialized; /* 8 bits, offset 4 */ unsigned char xx; /* 8 bits, offset 5 */ unsigned char yy; /* 8 bits, offset 6 */ unsigned int zz; /* 16 bits on 6800, offset ? */ }