home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / RGASM.RAR / ASMCODE.EXE / CHAPT6 / RESET.ASM < prev    next >
Encoding:
Assembly Source File  |  1993-05-10  |  360 b   |  22 lines

  1. page 55,132
  2. ;
  3. ;       Program Reset ( Chapter 6 )
  4. ;
  5. ;               System reload
  6. ;               =============
  7. ;
  8. ;       Voronezh, 03 February
  9. ;
  10. ;       Comment: no comment
  11. ;
  12. .model small
  13. FarSeg  segment at 0F000h
  14.     org     0FFF0h
  15. ReLd    dw      ?
  16. FarSeg  ends
  17. .code
  18.     assume  ds:FarSeg
  19. Begin :
  20.     jmp     Far ptr Farseg:Reld
  21.     end     begin
  22.