1
vote
0answers
21 views
zx spin emulator, build in assembly errors
Hi All,
Im having problems understanding how to get an assembly file to run inside the zx spin emulator using the built in assembler. I'm able to assemble my program but it seems to crash each time I …
1
vote
5answers
148 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, …
6
votes
10answers
312 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. …
2
votes
2answers
75 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 …
5
votes
13answers
648 views
Which x86 assembler do you use?
For anyone who works with x86 assembly, I'm curious which assembler you use.
Preferably, the name should be an acronym and end in "ASM" =)
3
votes
2answers
73 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 …
4
votes
6answers
289 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?
2
votes
3answers
258 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 …
2
votes
2answers
345 views
compile AMR-nb codec with RVCT for WinCE/Window Mobile
Hello everybody,
I'm working on amr speech codec (porting/optimization)
I have an arm (for WinCE) optimized version from voiceage and I use it as a reference in performance testing. So far, binary …
3
votes
3answers
263 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 …
1
vote
8answers
405 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 …
1
vote
2answers
362 views
documentation of gnu assembler directives
I'm trying to learn mips assembly at the moment. To that end, I wrote a very simple c program...
int main(){}
...and compiled it on a mips machine with the -S option to gcc to generate assembly …
2
votes
9answers
291 views
What are good or interesting Assembler-like languages, but at a higher level?
I've been looking at L.in.oleum and am intrigued by it's mix of higher-level constructs (loops, dynamic variables) with low-level assembler power (registers).
Are there other languages like Lino out …
6
votes
5answers
627 views
How do modern compilers use mmx/3dnow/sse instructions?
I've been reading up on the x86 instruction set extensions, and they only seem useful in some quite specific circumstances (eg HADDPD - (Horizontal-Add-Packed-Double) in SSE3). These require a certain …
1
vote
5answers
219 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 …
