home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
basic
/
library
/
qb_pds
/
dos
/
bdisk
/
bootloc.asm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1987-12-09
|
272 b
|
15 lines
PUBLIC bootsoff, bootsseg
.MODEL medium
.DATA
EXTRN _bootsec:BYTE
.CODE
bootsoff PROC
mov ax, OFFSET _bootsec
ret
bootsoff ENDP
bootsseg PROC
mov ax, @DATA
ret
bootsseg ENDP
END