home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / EFFO / forum5.lzh / SPRACHEN / ASSEMBLER / boot.a next >
Text File  |  1988-05-05  |  630b  |  30 lines

  1.  
  2.  
  3.  nam    boot
  4.  ttl     neu booten
  5. **********************************************************
  6. * Edition History
  7. *  #   Date     Comments                               by 
  8. * -- -------- ---------------------------------------- --- 
  9. * 01 05-05-88 Initial test version               MTM
  10. **********************************************************
  11.  
  12. * include system definitions - here for my configuration
  13.             use     /DD/DEFS/oskdefs.d
  14.              
  15. Edition        equ        1
  16. Typ_Lang     equ        (Prgrm<<8)+Objct
  17. Attr_Rev    equ        ((ReEnt+SupStat)<<8)+1
  18.         
  19.  
  20. boot_adress    equ $10FA
  21.  
  22.  
  23.     psect    ton,Typ_Lang,Attr_Rev,Edition,0,go
  24.     
  25.     
  26.  
  27. go         jmp     boot_adress
  28.  
  29.         ends 
  30.