File: vga.asm

package info (click to toggle)
dosbox-x 2025.02.01%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 44,068 kB
  • sloc: cpp: 337,267; ansic: 164,765; sh: 1,337; makefile: 956; perl: 385; python: 106; asm: 57
file content (11 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
	[BITS 16]
	[ORG 0x100]

	[SECTION .text]

start:	mov ax, 0x1202		; Alternate function select, 400 scan lines
	mov bl, 0x30		; Select vertical resolution
	int 0x10
	mov ax, 0x0003		; Set video mode, text 80x25
	int 0x10
	int 0x20		; Exit