Tagged Questions
nasm is the Netwide Assembler, an open source i386 assembler with 64 bit support.
14
votes
8answers
5k views
Basic yet thorough assembly tutorial (linux)?
I want to learn some practical assembly language having just learned the basic concepts in class. Are there any decent books or tutorials (nasm, etc) that would be recommended?
11
votes
1answer
120 views
Why data and stack segments are executable?
I have just noticed that my simple program has its data and stack segments executable.
I saw it in /proc/[pid]/maps, and simple code confirmed it.
For example:
; prog.asm
section .data
code: ...
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" =)
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
8answers
357 views
Is it worthwile to learn assembly language? [closed]
Is it still worthwhile to learn ASM? I know a little of it but I haven't really used it or learned it properly because everything i learn to do in assembler I can do in 1/10th the time with some ...
6
votes
2answers
112 views
Outputting integers in assembly on Linux
This needs to be done in pure assembly (ie. no libraries or calls to C).
I understand the essence of the problem: one needs to divide the integer by 10, convert the one-digit remainder to ASCII, ...
5
votes
1answer
364 views
Help Writing TSR Program(s) in NASM Assembly for DOS
I've been trying to write TSR (Terminate-Stay-Resident) programs (in general) in Assembly (16-bit) for MS-DOS. I've read through a Wikipedia page
on TSR and also a page on using it specifically in ...
5
votes
1answer
208 views
Assembly language programming hints and tips [closed]
I'm having a go at writing my own "toy" OS and for the moment I'm doing it mostly in assembly (NASM) - partly because I'm hoping it will help me understand x86 disassembly and also because I'm finding ...
5
votes
1answer
825 views
run an assembly code on ubuntu
The code i am trying to run is bellow.
I use nasm util to convert it into object file. When i tried to execute it says "can not execute binary file".
I run the command:
nasm -f elf -o helloworld.o ...
5
votes
3answers
1k views
How do i read single character input from keyboard using nasm (assembly) under ubuntu?
I'm using nasm under ubuntu. By the way i need to get single input character from user's keyboard (like when a program ask you for y/n ?) so as key pressed and without pressing enter i need to read ...
5
votes
1answer
2k views
5
votes
5answers
2k views
Loading kernel from assembly (NASM)
I've been stuck with this for weeks now and have no idea where I'm going wrong because NASM hasn't given me any errors. The code is pretty self explanatory because of the comments.
this is the code ...
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
4answers
1k views
How do I compile DOS programs on Debian?
For my assembly language class, we're writing DOS programs using DPMI. Unfortunately, I don't have access to a 32-bit windows machine all the time. I do have a Debian virtual machine installed on ...
4
votes
3answers
83 views
Use label in assembly from C
I simply need a way to load the address of a label e.g. MyLabel: in e.g. 'src.asm' into a variable in e.g. 'src.c'. (These files will be linked together) I am using gcc and nasm to assemble these ...
4
votes
2answers
168 views
x86 ASM Linux - Creating a loop
I am working on a program - it should be simple - on a Linux OS using NASM and x86 Intel Assembly Syntax.
The problem I am having is that I cannot create a working loop for my program:
section .data
...
4
votes
1answer
91 views
Using LLDT and configuring the GDT for it
I'm working on a small OS that will use a separate Local Descriptor Table for each process. I understand that I will need to use the lldt instruction to load a LDT segment from my GDT. I already ...
4
votes
1answer
160 views
Converting Decimal to Hex
First off, this is homework.
I'm trying to read a 5 digit number into the register bx. The number is assumed to be no greater than 65535 (16 bits). Below is how I am attempting to do so.
However, ...
4
votes
1answer
234 views
NASM programming - `int0x80` versus `int 0x80`
I have a simple NASM program which only invokes sys_exit:
segment .text
global _start
_start:
mov eax, 1 ; 1 is the system identifier for sys_exit
mov ebx, 0 ; exit code
...
4
votes
4answers
389 views
Assembly (or NASM) annoying problem
I used to compile my asm code with TASM (on winXP) but I had some troubles so now I use NASM (on linux). This snippet shows what I'm trying to do:
(gdb) list 35
30 xor ecx,ecx # ecx ...
4
votes
2answers
277 views
Do I have to initialize the CPU registers in assembly code that is called from C?
I'm reading Paul Carter's pcasm book. It uses NASM, a C driver app that calls my assembly code, and a companion library that makes it easy to do basic I/O in assembly.
This is what my function that ...
4
votes
2answers
125 views
SegFaults in my Assembler? But that's impossible! :O
Okay, so I understand all of us C/C++ programmers have at one time met our untimely nemesis, the diabolical signal SIGSEGV, the Segmentation Fault. Now, I understood (emphasis on the past tense) this ...
4
votes
3answers
262 views
Building a COM object vtable in x86 assembly
I am building a COM object in x86 assembly using NASM. I understand COM quite well and I understand x86 assembly pretty well, but getting the two to mesh is getting me hung up... (by the way, if ...
4
votes
2answers
448 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
1answer
721 views
Set video mode to 1920x1080 (HD) or higher in kernel ASM (NASM assembler)
I would like to set the video mode in a ASM kernel I'm working on to a video mode 1920x1080 or higher (or at least higher than the usual limit in VESA). Is there anyway to do that, and if so, provide ...
4
votes
3answers
285 views
Why does the mov instruction have to be used this way?
I've been looking around online a little bit at assembly tutorials and have been flipping through Art of Assembly as well.
I keep getting hung up on one thing when changing segment registers though.
...
4
votes
4answers
648 views
What is the best resource for learning (N)ASM?
I've been wanting to learn assembly for a while now, and although I've tried a few times before, I haven't really been able to get past "Hello, world". Are there any good introductory tutorials to ...
3
votes
2answers
165 views
x86 NASM Assembly - Problems with Input
I am working to take input from a user twice, and compare the input. If they are the same, the program exits. If not, it reprints the input from the first time, and waits for the user to type ...
3
votes
1answer
127 views
Correct User Input - x86 Linux Assembly
So I am working on an x86 Assembly program for Linux using NASM. This program basically asks the user for their name and their favorite color. After doing this and storing the two strings in variables ...
3
votes
2answers
150 views
Linux x86 ASM - Getting User Input
This is, hopefully, a simple question:
First, I would like to know if anyone has an idea of how to get user input using x86 NASM Syntax Assembly on Linux. Right now, I have:
section .data
greet: ...
3
votes
1answer
140 views
NASM Boot Loader strange behavior
I'm trying to write a boot loader but none of my experiments didn’t worked until I found this question: why this boot loader doesn't working?
I had simplified this program to only write a char ...
3
votes
3answers
641 views
Can't link assembly file in Mac OS X using ld
I'm trying to run a basic assembly file using 64 Bit Mac OS X Lion, using nasm and ld which are installed by default with Xcode.
I've written an assembly file, which prints a character, and I got it ...
3
votes
2answers
87 views
Good references for the syscalls
I need some reference but a good one, possibly with some nice examples. I need it because I am starting to write code in assembly using the NASM assembler. I have this reference:
...
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
166 views
NASM to GAS: Calling equ'd symbols
I have some NASM files which have a line:
%INCLUDE "bmdev.asm"
The bmdev.asm file has equ directives such as:
b_print_newline equ 0x0000000000100040
The files which include bmdev.asm ...
3
votes
1answer
456 views
Plain binaries with GNU assembler
I have some NASM files that generally have the structure:
[BITS 64]
[ORG 0x0000000000200000]
start:
...
ret
I'm assembling them like so:
nasm -f bin abc.asm
I'd ...
3
votes
2answers
179 views
Assembler Error: Mach-O 64 bit does not support absolute 32 bit addresses
So I'm learning x86_64 nasm assembly on my mac for fun. After hello world and some basic arithmetic, I tried copying a slightly more advanced hello world program from this site and modifying it for 64 ...
3
votes
1answer
78 views
how does this assembly proc not crash?
I have this linux nasm code here that doesn't crash. With the ret 80 instruction at the end of printString shouldn't this program crash?
bits 32
section .data
hello: db 'Hello Linux ...
3
votes
2answers
95 views
significance of address 0x8048080
why when i debug asm source in gdb is 0x8048080 the address chosen for the starting entry point into code? this is just a relative offset, not an actual offset of into memory of an instruction, ...
3
votes
1answer
76 views
NASM Specific — Section vs [SECTION ]
I cannot seem to find anything clear in NASM's documentation regarding the difference between using Section or [SECTION ] (with the brackets) in your code. I am aware these are macros, but I see them ...
3
votes
2answers
618 views
Loop unrolling vs Loop tiling
Can someone please tell if the 2 optimization techniques are same or different?
Also, is it responsibility of programmer or compiler to do it?
3
votes
3answers
263 views
NASM Guessing Number Game Gone Wrong
I have decided to create a simple guessing number game that uses Linux system calls, and some C functions to provide a more simpler interface. I seem to get a segmentation fault when I convert the int ...
3
votes
1answer
286 views
why using external c function in nasm breaks this code?
I've encountered a problem when using an external c function for debugging my nasm program.
%macro pint 1
pushad
push %1
call printint
popad
%endmacro
section .text
extern printint
...
3
votes
2answers
414 views
Linux assembly; bss section memory initialized to 0?
In tests I have run the memory in the bss section of my programs has always been initialized to zero before I write anything there. Is this coincidental, or is the system "cleaning" these memory ...
3
votes
2answers
724 views
Problem with bootstrap loader and kernel
We are working on a project to learn how to write a kernel and learn the ins and outs. We have a bootstrap loader written and it appears to work. However we are having a problem with the kernel ...
3
votes
2answers
374 views
nasm/yasm arguments, linkage to C++
I've got a question concerning nasm and its linkage to C++. I declare a litte test function as
extern "C" void __cdecl myTest( byte i1, byte i2, int stride, int *width );
and I call it like this:
...
3
votes
1answer
1k views
Develop a Bootloader In Assembly
I've already done a part of my OS in Assembly, but now I want to build a own bootloader for it too instead of using GRUB. When I was developing my test OS in Assembly I remember that I boot it like ...
3
votes
4answers
360 views
Is assembly language `assembler` specific too? Which assembler is best?
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 80×86 ...
3
votes
4answers
2k views
problem in understanding mul & imul instructions of Assembly language
I'm learning 80386 from PC Assembly by paul caurter
mul source
If the operand is byte sized, it is multiplied by the byte in the AL
register and the result is stored in
the 16 bits of ...
3
votes
1answer
1k views
What's the file format used by gcc in OSX?
I'm trying to learn assembly using NASM, the pcasm-book.pdf from Dr Paul Carter - http://www.drpaulcarter.com/pcasm/ - on my Mac OS X Snow Leopard.
I'm trying to link the previous compiled C sample ...