Tagged Questions

Assembler is the name of the source code used for programming a computer at the level of its instruction set. It is also a generic term for a program that converts such source code into executable binary code for that computer. The term is often sloppily applied to mean the binary machine code itself. (The term "assembly" means the same thing but is used for another purpose in the Microsoft world and is thus confusing in a general context).

learn more… | top users | synonyms

91
votes
15answers
3k views

Are there any smart cases of runtime code modification?

Can you think of any legitimate (smart) uses for runtime code modification (program modifying it's own code at runtime)? Modern operating systems seem to frown upon programs that do this since this ...
21
votes
11answers
2k 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 ...
11
votes
5answers
1k 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 ...
11
votes
16answers
2k 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" =)
10
votes
3answers
356 views

Structured Exception Handler and Delphi

I am trying to set SEH without using try except (This is for my own personal knowledge to get a better idea on how SEH works) The following code doesn't work type TSeh = packed record ...
9
votes
1answer
91 views

Why does cmp 0x84,0x30 trigger the overflow flag?

I've been playing with assembly for a while and looking at some code. in which AL is first set to 0x84 then cmp AL, 0x30 is used. This instruction then triggers the Overflow flag. From what I read ...
9
votes
7answers
2k views

Compile/run assembler in linux?

I'm fairly new to linux(ubuntu 10.04) and a total novice to assembler. I was following some tutorials and I couldn't find anything specific to linux. So, my question is, what is a good package to ...
8
votes
5answers
342 views

What is a good embedded platform to use to teach yourself assembly language?

I've got a decent amount of programming experience but it is all in high level languages. I recently picked up C and that project went really well and the learning experience was well worth it. Now I ...
8
votes
4answers
6k 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.
7
votes
2answers
303 views

How to turn a method to a callback procedure in 64bit Delphi XE2?

The MustangPeak Common Library (http://code.google.com/p/mustangpeakcommonlib/) contains the following code that converts a method to a procedure that can be used in a callback: const AsmPopEDX = ...
7
votes
3answers
479 views

mov ah,bh + mov al, bl much faster than mov ax, bx?

I've found that mov al, bl mov ah, bh is much faster than mov ax, bx Can anyone explain me why? I'm running on Core 2 Duo 3 Ghz, in 32-bit mode under Windows XP. Compiling using NASM and then ...
7
votes
2answers
107 views

Assembly 8x8 four quadrant multiply algorithm

In the book "Musical Applications of Microprocessors," the author gives the following algorithm to do a 4 quadrant multiplication of two 8 bit signed integers with a 16 bit signed result: Do an ...
7
votes
9answers
946 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. ...
7
votes
5answers
2k 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 ...
6
votes
1answer
745 views

Hello World using x86 assembler on Mac 0SX

I am trying to dive into some x86 assembly programming on my Mac, but am having trouble producing an executable. The problem seems to be at the linking stage. helloWorld.s: .data ...
6
votes
6answers
670 views

Writing an assembler , need help

I'm writing an 8086 assembler for a college project . I've gone through some material on compiler design on the internet and am reading the 'dragon book' of compilers . But the problem is I couldn't ...
6
votes
3answers
494 views

Is there kind of runtime C++ assembler library around?

For my small hobby project I need to emit machine code from C++ program in runtime. I have base address 0xDEADBEEF and want to write something like this: Assembler a((void*)0xDEADBEEF); a.Emit() ...
6
votes
2answers
1k 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
3answers
1k views

Building an assembler

I need to build an assembler for a CPU architecture that I've built. The architecture is similar to MIPS, but this is of no importance. I started using C#, although C++ would be more appropriate. (C# ...
5
votes
2answers
88 views

how and on what is a physical alarm clock programmed

i do hope this question fits here, otherwise sorry. I have a physical alarm clock (5$) which has been programmed for snooze, light effects, etc. Generally, all these devices like calculator, ...
5
votes
2answers
191 views

Direction/Sign Extend bit in x86 instruction set

In the x86 instruction set the the bit at index 1 can either be the direction bit which specifies what the destination and source operands are or it can be a sign extend bit. I'm wondering what's the ...
5
votes
3answers
1k views

Invalid instruction suffix for push when assembling with gas

When assembling a file with GNU assembler I get the following error: hello.s:6: Error: invalid instruction suffix for `push' Here's the file that I'm trying to assemble: .text LC0: ...
5
votes
3answers
355 views

Why should code be aligned to even-address boundaries on x86?

I am working through Kip Irvine's "Assembly Language for x86 Processors, sixth edition" and am really enjoying it. I have just read about the NOP mnemonic in the following paragraph: "It [NOP] is ...
5
votes
6answers
382 views

How can I write directly to the screen?

I'm a teenager who has become very interested in assembly language. I'm trying to write a small operating system in Intel x86 assembler, and I was wondering how to write directly to the screen, as in ...
5
votes
2answers
767 views

x86 instruction encoding tables

I'm in middle of rewriting my assembler. While at it I'm curious about implementing disassembly as well. I want to make it simple and compact, and there's concepts I can exploit while doing so. It is ...
5
votes
3answers
982 views

How Do Assemblers Map x86 Instruction Mnemonics to Binary Machine Instructions?

I'm interested in writing an x86 assembler. I'm wondering what is a good way to map x86 assembly mnemonic instructions (using an Intel-like syntax) into the corresponding binary machine code ...
5
votes
4answers
1k views

How Do You Make An Assembler?

I'd like to make a simple x86 assembler. I'm wondering if there's any tutorials for making your own assembler. Or if there's a simple assembler that I could study. Also, I wonder what tools are used ...
5
votes
3answers
895 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 ...
5
votes
6answers
2k 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?
5
votes
10answers
457 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 ...
4
votes
3answers
155 views

In x86 assembly how can you set the zero flag (ZF) without doing a compare operation?

I have a short piece of (x86) assembly that I am trying to figure out what it does. ... 6: 81 ec 00 01 00 00 sub $0x100, %esp c: 31 c9 xor %ecx , %ecx e: ...
4
votes
3answers
196 views

Delphi inline assembler pointer to structure

Hi people is there a way i can access a pointer to a structure member directly from in line assembler i tried this procedure test(eu:PImageDosHeader);assembler; asm push eu._lfanew end; It ...
4
votes
5answers
287 views

Design Pattern For Making An Assembler

I'm making an 8051 assembler. Before everything is a tokenizer which reads next tokens, sets error flags, recognizes EOF, etc. Then there is the main loop of the compiler, which reads next tokens and ...
4
votes
5answers
273 views

Does a compiler have an assembler too?

My understanding is that a compiler converts the high level language into machine code. I have a question as to whether a compiler(say VC++) in-turn uses an assembler too? I remember seeing assembly ...
4
votes
2answers
366 views

How to write a X86_64 _assembler_?

Goal: I want to write an X86_64 assembler. Note: marked as community wiki Background: I'm familiar with C. I've written MIPS assembly before. I've written some x86 assembly. However, I want to write ...
4
votes
2answers
445 views

Choosing the right and learning assembler for compiler-writing

I'm writing a compiler and I have gone through all the steps (tokenizing, parsing, syntax tree structures, etc.) that they show you in all the compiler books. (Please don't comment with the link to ...
4
votes
5answers
212 views

Where can I find an assembler for the x86?

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?
4
votes
5answers
969 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 ...
3
votes
4answers
165 views

C++: What are R-Value references on a technical level (ASM)? [closed]

Possible Duplicate: What is the difference between r-value references and l-value references? (CodeGen) I was wondering, can anyone explain what R-Value references are on a technical level? ...
3
votes
3answers
167 views

Assembly Addressing Modes

Can someone please explain what the difference between the following two are? I'm finding it a little difficult to understand the concepts behind addressing modes mov ax, [bx + di + 10] mov ax, [bx + ...
3
votes
1answer
139 views

Difference between `bx` and `bp`?

What difference between bx and bp in assembly? Example here: mov bx, 1h mov bp, 1h Do they reference same memory? Is same with ss and sp? Sorry for bad English and very much thank you!
3
votes
4answers
439 views

x64 Assembler Windows Tutorial

I'd like to do a bit of self education in the field of x64 assembler on Windows 7. I'm a professional dev and my C is of a reasonable standard, so I don't need too much hand holding but I would like ...
3
votes
3answers
171 views

Are there any ARM based systems/emulators with a graphical frame buffer that allow for (relatively) legacy-free Assembly programming?

I am looking for a modern system to do some bare bones Assembly programming (for fun/learning) that does not have the legacy burden of x86 platforms (where you still have to deal with BIOS, switching ...
3
votes
1answer
355 views

x86 assembler: floating point compare

As part of an compiler project I have to write GNU assembler code for x86 to compare floating point values. I have tried to find recurses on how to do this online and from what I understand it works ...
3
votes
2answers
408 views

Hardware VGA Text Mode IO in old dos assembly Issue

After reading about at least the first 3 or 4 chapters of about 4 different books on assembly programming I got to a stage where I can put "Hello World" on a dosbox console using MASM 6.11. Imagine my ...
3
votes
2answers
736 views

How to make string input in Assembly language?

Please, does anybody know how to code string input in assembly language? I'm using int 21 to display and input characters.
3
votes
1answer
67 views

CPU: Program inside CPU that determines exact principal of instructions (?!)

At Computer Science lecture we’ve been told that there’s a special code (lower that assembler) that determines behavior of CPU which is written inside CPUs ROM. It was meant that is determines what ...
3
votes
1answer
121 views

What JVM assemblers are there?

I want a JVM assembler that is straightforward and simple. It should take a text file written in the mnemonic language described in The Java Virtual Machine Specification and produce class files, i.e. ...
3
votes
4answers
97 views

Java performance: arraylength vs iload

for (int i=0; i<arr.length; i++) { } This will result in a code: getstatic #4; arraylength While the following code: int length = arr.length; for (int i=0; i<length; i++) { } will be ...
3
votes
2answers
198 views

Assembler: Getting Win32's WinMain on-stack parameters

I need to access the WinMain parameters using assembly, but I don't seem to be able to do so despite that I supposedly know where they are in the stack (DWORD offsets 0 to 16, and 0 to 20 when pushing ...

1 2 3 4 5 6