Add e_dos.asm for DOS

This commit is contained in:
Blake Burgess 2018-12-08 12:02:40 -05:00
parent 8b86eb8925
commit 761fb5b5b5

6
e_dos.asm Normal file
View File

@ -0,0 +1,6 @@
org 0x100
mov ah, 0x0E
mov al, 'e'
int 0x10
ret