Tagged Questions

1
vote
4answers
46 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
264 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
2answers
49 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 …
2
votes
3answers
208 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
251 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?
3
votes
3answers
236 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
2answers
72 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 …
4
votes
13answers
617 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" =)
1
vote
8answers
363 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 …
6
votes
5answers
594 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
211 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
9answers
283 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 …
2
votes
2answers
306 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 …
5
votes
6answers
381 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
2answers
337 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 …

1 2 next
15 30 50 per page