6
votes
4answers
83 views
Inline assembler call for subroutine
Hi,
I have question about inline assembler. It's possible to call another assembler subroutine from inline assembler within the same function? For example:
void FindValidPID(unsigned int &Pid)
…
4
votes
2answers
99 views
how fast is division?
hi,
i was once supposed to make a short assembler code for dividing with numbers that are not power of 2. My sollution was subtracting the divider in cycles and the number of cycles was the actual …
19
votes
11answers
814 views
What do C and Assembler actually compile to?
So I found out that C(++) programs actually don't compile to plain "binary" (I may have gotten some things wrong here, in that case I'm sorry :D) but to a range of things (symbol table, os-related …
3
votes
2answers
72 views
ASM 86 - I need a “compiler”
I study ASM-86 language at high school and I want to program a little at home.
Do you know any "compiler" for this language that I can program and view the state of the memory?
2
votes
2answers
229 views
A good NASM/FASM tutorial?
Does anyone know any good NASM or FASM tutorials? I am trying to learn assembler but I can't seem to find any good resources on it.
1
vote
2answers
60 views
ZX Spin emulator, built-in assembly errors
I'm 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 …
3
votes
4answers
120 views
Is assembly language `assembler` specific too? Which assembler is best?
Hello,
I'm learning assembly language. I started with Paul A. Carter's PC Assembly Language which uses NASM (The Netwide Assembler). Then in the middle I switched and started reading Introduction to …
6
votes
10answers
375 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. …
1
vote
5answers
189 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, …
4
votes
2answers
101 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
320 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
356 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
306 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 …
6
votes
13answers
707 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" =)
6
votes
5answers
716 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 …
