home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / emulate / z80emula.lha / Startup-Z80 < prev    next >
Text File  |  1992-03-08  |  436b  |  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.