Reputation: 155
I'm practicing with the basics assembler and I have one question. how do I compile programs on windows 7 64-bit and which site to download the compiler. I might add that we are working in the "tasm" compiler and processor family 8086. I mean simple programs such as addition, subtraction like this:
.model tiny
.stack 2
.data
mydata segment
arg1 db 4
arg2 db 2
mydata ends
mycode segment
assume cs:mycode, ds:mydata
begin:
mov ax,seg mydata
mov ds, ax
mov bl, arg2
add bl, arg1
mov dl, bl
add dl, 48
mov ah, 02h
int 21h
mov ah, 4ch
int 21h
naszkod ends
end begin
Thanks for help
Upvotes: 0
Views: 5272
Reputation: 4650
Here are some (partial) answers that might help you:
Upvotes: 1