aboutsummaryrefslogtreecommitdiff
path: root/shell.asm
blob: b73db67d18f60a21235863fd0612bf62a4a51bb3 (plain)
1
2
3
4
5
6
7
8
Main:
	call	GetKey
	mov		ah, 0x0E
	
GetKey:
	xor		ax, ax
	int		0x16
	ret