home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
library
/
dos
/
sound
/
nh10src
/
testfont.c
< 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
C/C++ Source or Header
|
1991-12-15
|
261 b
|
20 lines
#include <dos.h>
#include "nohiss.fnt"
main()
{
_ES = FP_SEG(font);
_BP = FP_OFF(font);
_BH=16;
_BL=0;
_CX=sizeof(font)/16;
_DX=128;
_AX=0x1100;
asm int 0x10;
// getch();
// _AX=0x1104;
// asm int 0x10;
return;
}