1
vote
5answers
134 views
Create Executable From Assembly Code
Hello, I need to create an executable from the next assembly code:
.MODEL SMALL
.DATA
TEXT DB 'Hello world!$'
.CODE
.STACK 20
.STARTUP
MOV AX, @DATA
MOV DS, AX
MOV AH, 9
MOV BL, 02H
INT 10H
MOV Dx, …
3
votes
2answers
57 views
Which assemblers currently support the AVX instruction set?
I'd like to start and play with some AVX (advanced vector extension) instructions. I know Intel provides an emulator to test software containing these instructions (see this question), but since I …
6
votes
10answers
285 views
What is the best way to go about writing a simple x86 assembler?
I'm interested in writing an x86 assembler for a hobby project.
At first it seemed fairly straight forward to me but the more I read into it, the more unanswered questions I find myself having. …
3
votes
3answers
246 views
Z80 ASM BNF structure… I’m am on the right track?
I'm currently trying to get to grips with BNF and attempting to assemble some Z80 ASM code. Since I'm new to both fields So my question is, Am I even on the right track? I am currently trying to write …
2
votes
3answers
232 views
Writing an z80 assembler - Lexing ASM and building a parse tree using composition?
Hi guys, I'm very new to the concept of writing an assembler and even after reading a great deal of material, I'm still having difficulties wrapping my head around a couple of concepts.
1) What is …
4
votes
6answers
265 views
gas vs. nasm: which assembler produces the best code?
Both tools translate assembly instructions directly into machine code, but is it possible to determine which one produces the fastest and cleanest code?
1
vote
5answers
217 views
“Assembly” vs. “Assembler”
I've been taught that "assembly" is what you write in your files, to have your "assembler" convert it into binary code.
But I see these two terms mixed and matched in various works. I've even heard …
2
votes
2answers
74 views
Definition of fix-up?
I've seen this term in the Python Lisp compiler and some C linker's sources.
My guess is that a fix-up is just some wrapper around an Assembly routine that makes sure the alignment is right, but I'm …
1
vote
2answers
214 views
Images for Assembler, Interpreter and Compiler?
I got an assignment to make hand-drawn posters of
Assembler
Interpreter
Compiler
I googled for images of above three but not able to get some exact images which can define the above three …
1
vote
3answers
140 views
how to integrate assembly code when i am designing a compiler in c?
i am designing a compiler in c . but for certain problems like big integers i have to code in assembly code . so how can i integrate assembly code in c?
i am wrting my code in dev cpp.. which i …
5
votes
6answers
384 views
Why do programmers confuse the term “assembler” with “assembly”?
As programmers we need to be precise with our verbal and written communication. Why do so many programmers confuse the term "assembler" (the object code generator) with "assembly" (the language you …
1
vote
8answers
386 views
Is it possible to compile assembly code in MSVC++?
Is it possible to create, edit, link, compile (is compile the word?) etc. assembly code in MSVC++?
Also, if it's not possible, how can I create an .exe out of plain text, ie: convert the text into …
0
votes
1answer
131 views
SIC Assembler I/O question
I've coded a SIC assembler and everything seems to be working fine except for the I/O aspect of it.
I've loaded the object code into memory (converted char format into machine representation), but …
3
votes
4answers
346 views
x86 code generator framework for Delphi
Has anyone come across a framework or library for Delphi to simplify the generation of x86 code? I am not looking for an assembler, but rather a framework that abstracts the code generation process …
1
vote
3answers
405 views
“file not recognized” while using the GNU linker
I'm probably doing something wrong, being a newbie. Could you please help me out?
I've written a simple Hello World program in C called hello.c, and ran the following command:
gcc -S hello.c
That …
