Added some more ASM languages and Squirrel.

This commit is contained in:
Daniel Clarke
2012-04-29 09:11:36 -04:00
parent 38f6567c5c
commit 7214a08a5f
6 changed files with 83 additions and 1 deletions

17
a/assembler_masm_dos.asm Normal file
View File

@@ -0,0 +1,17 @@
; 16 bit dos assembly
.model small
.stack
.data
message db "Hello world!", "$"
.code
main proc
mov ax,seg message
mov ds,ax
mov ah,09
lea dx,message
int 21h
mov ax,4c00h
int 21h
main endp
end main