summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/syslinux-4.03/core/plaincon.inc
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/syslinux-4.03/core/plaincon.inc')
-rw-r--r--contrib/syslinux/syslinux-4.03/core/plaincon.inc24
1 files changed, 0 insertions, 24 deletions
diff --git a/contrib/syslinux/syslinux-4.03/core/plaincon.inc b/contrib/syslinux/syslinux-4.03/core/plaincon.inc
deleted file mode 100644
index c41629d..0000000
--- a/contrib/syslinux/syslinux-4.03/core/plaincon.inc
+++ /dev/null
@@ -1,24 +0,0 @@
-;
-; writechr: Write a single character in AL to the console without
-; mangling any registers; handle video pages correctly.
-;
- section .text16
-
-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