home *** CD-ROM | disk | FTP | other *** search
- .model small
- .code
-
- public HaltError, HaltTurbo
- extrn _Vars:abs, _Consts:abs ; We need 2 ensure th@ vars & consts R linked in
-
- HaltError:
- HaltTurbo:
- mov ax,4C00h+_Vars-_Vars ; C00l, eh?
- int 21h
-
- dw _Consts ; This trick doesn't work with consts, we lose two bytes here :(
-
- end
-