static void upd_byte P2(int, offset, unsigned char, b) { IF_DEBUG(UPDATE_PROGRAM_SIZE); DEBUG_CHECK2(offset > CURRENT_PROGRAM_SIZE, "patch offset %x larger than current program size %x.\n", offset, CURRENT_PROGRAM_SIZE); mem_block[A_PROGRAM].block[offset] = b; }
static void upd_short P2(int, offset, short, l) { IF_DEBUG(UPDATE_PROGRAM_SIZE); DEBUG_CHECK2(offset > CURRENT_PROGRAM_SIZE, "patch offset %x larger than current program size %x.\n", offset, CURRENT_PROGRAM_SIZE); COPY_SHORT(mem_block[current_block].block + offset, &l); }
static void upd_short P3(int, offset, int, l, char *, where) { unsigned short s; IF_DEBUG(UPDATE_PROGRAM_SIZE); DEBUG_CHECK2(offset > CURRENT_PROGRAM_SIZE, "patch offset %x larger than current program size %x.\n", offset, CURRENT_PROGRAM_SIZE); if (l > USHRT_MAX) { char buf[256]; sprintf(buf, "branch limit exceeded in %s, near line %i", where, line_being_generated); yyerror(buf); } s = l; COPY_SHORT(mem_block[A_PROGRAM].block + offset, &s); }