File: plaincon.inc

package info (click to toggle)
syslinux 1%3A3.31-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 7,584 kB
  • ctags: 8,059
  • sloc: ansic: 58,348; asm: 6,652; pascal: 6,176; perl: 907; makefile: 844; python: 266; sh: 139
file content (24 lines) | stat: -rw-r--r-- 467 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
;
; writechr:	Write a single character in AL to the console without
;		mangling any registers; handle video pages correctly.
;
		section .text

writechr:
		call write_serial	; write to serial port if needed
		pushfd
		test byte [cs:UsingVGA], 08h
		jz .videook
		call vgaclearmode
.videook:
		test byte [cs:DisplayCon], 01h
		jz .nothing
		pushad
		mov ah,0Eh
		mov bl,07h		; attribute
		mov bh,[cs:BIOS_page]	; current page
		int 10h
		popad
.nothing:
		popfd
		ret