home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / amiga / gdb-4.12-src.lha / gdb-4.12 / sim / z8k / mem.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-03  |  404 b   |  9 lines

  1. #define PAGE_SIZE (1<<PAGE_POWER)
  2.  
  3. int sim_read_byte PARAMS((sim_state_type *, sim_phys_addr_type));
  4. unsigned int sim_read_short PARAMS((sim_state_type *, sim_phys_addr_type));
  5. void sim_write_long PARAMS((sim_state_type *, sim_phys_addr_type,
  6.                 int));
  7. void sim_write_short PARAMS((sim_state_type *, sim_phys_addr_type, int));
  8. void sim_write_byte PARAMS((sim_state_type *, sim_phys_addr_type, int));
  9.