mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-27 08:10:07 +08:00
12 lines
262 B
NASM
12 lines
262 B
NASM
;; library function for rdfseg - this file is linked as a far segment
|
|
|
|
[BITS 16]
|
|
[GLOBAL _puts]
|
|
_puts:
|
|
;; can't remember how to print a string in DOS, but if anyone wants
|
|
;; to actually test this program, it should be fairly easy to put
|
|
;; in here!
|
|
|
|
retf
|
|
|
|
|