I'm currently learning ASM and trying one of the code examples. I have no problem assembling, but when I get to linking, using TLINK32 on a computer running Windows XP with an Intel Pentium 3 processor, I get the following output:
The code in test.asm is:
MODEL small
.STACK 64
.DATA...
Hello,
I have tried, using 32-bit assembly language code I found online, to write my own program. It assembled and link, but when I run it, I get a message saying the program had "encountered a problem and needs to close." It is a message that is common on Windows, asking to send a report to...
Hello,
I would like to learn assembly language for 32-bit computers (intel, IBM, call it wtv you like), what book(s) would you recommend me? Thank you for your answers.
I started a book on assembly, but it's a bit old and I wasn't able to assemble the fist program :s. Here's the code:
.MODEL SMALL
.STACK 64
.DATA
DATA1 DB 52H
DATA2 DB 29H
SUM DB ?
.CODE
MAIN PROC FAR
MOV AL,DATA
MOV...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.