Path: utzoo!attcan!uunet!decwrl!elroy.jpl.nasa.gov!ames!amelia!roelofs From: roelofs@amelia.nas.nasa.gov (Ender Wiggin) Newsgroups: comp.sys.ibm.pc.programmer Subject: Re: EGA Soft-Fonts Keywords: fonts Message-ID: <6611@amelia.nas.nasa.gov> Date: 8 Jun 90 05:33:25 GMT References: <17227@ttidca.TTI.COM> <10079@chaph.usc.edu> Organization: University of Chicago Lines: 13 In article <10079@chaph.usc.edu> dchun@aludra.usc.edu (Dale Chun) writes: > Does anyone know where the starting address of the character > definitions of an EGA or VGA video board is located? Thanks for any info! For EGA and, presumably, VGA: mov ah, 11h ; char gen routine mov al, 30h ; info mov bh, 2 ; ROM 8x14 ptr int 10h Returns a pointer to the ROM character table in ES:BP.