mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
522 B
27 lines
522 B
;++
|
|
;
|
|
; Module Name:
|
|
;
|
|
; backend.asm
|
|
;
|
|
; Module Description:
|
|
;
|
|
; This module is needed only to get around a linker quirk we
|
|
; run into because we're linking an app compiled as a "small"
|
|
; model app as a "tiny" model app.
|
|
;
|
|
; This is how we find the end of the com file and the beginning of the
|
|
; OS loader coff header. This file must always be linked last when
|
|
; generating STARTUP.COM
|
|
;--
|
|
|
|
|
|
.386p
|
|
|
|
_DATA segment para use16 public 'DATA'
|
|
|
|
public _BackEnd
|
|
_BackEnd equ $
|
|
|
|
_DATA ends
|
|
end
|