home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / misc / z80emula.lzh / Startup-Z80.example < prev    next >
Encoding:
Text File  |  1992-05-10  |  436 b   |  12 lines

  1. ; this is an example of a startup file
  2. ; the emulator searches the current directory and S: when starting
  3. ; feel free to modify this as you require
  4.  
  5. base hex  ; make default base hexadecimal
  6. debug on  ; give me more info when doing things
  7. interrupts value #10 on ; generate Z80 interrupt for every 10 amiga ticks
  8. ld a,#24    ; stuff a few values in the system
  9. ld b,%10101
  10. ld hl,1234
  11. add a,b     ; any valid Z80 instructions can be used
  12.