blob: 2b9e4fd0992eac3a17cc963765c122fe878897e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
;; 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
|