Nasm is the Netwide Assembler, an open-source x86/x64 assembler. It aims at being portable, modular and at having a simpler syntax.

learn more… | top users | synonyms

0
votes
0answers
18 views

Nasm with Gcc Error

I'm creating a simple asm code, to act as a wc command. To compile the code i use nasm + gcc (MAC OS X 10.8) The commands i use are nasm wc.asm -f macho -o wc.o gcc wc.o run.c -m32 -o run.o The ...
1
vote
3answers
81 views

Assembly set address to point to an address

I'm trying to build a linked list in assembly (dont ask why), the linked list has to be in a stack I built. I'm using nasm with intel 80x86 on ubuntu This is the linked list: size_i: struc node ...
1
vote
0answers
22 views

gnu linker: file not recognized

this is my makefile: obj =init3.o initfunc.o descriptor.o disk.o init:$(obj) ld -o init.out $(obj) init3.o:init3.asm nasm -f aout init3.asm initfunc.o:initfunc.asm nasm -f ...
3
votes
1answer
93 views

Re-writing a small execve shellcode

Going through http://hackoftheday.securitytube.net/2013/04/demystifying-execve-shellcode-stack.html I understood the nasm program which invokes execve and was trying to re-write it. Some background ...
1
vote
1answer
23 views

Why does 0xE1 0x4F disassemble to different instructions in LLVM and NDISASM?

In a Bash shell: $ echo "0xe1 0x4f" | llvm-mc-3.2 -disassemble -triple i386 .section __TEXT,__text,regular,pure_instructions loope 79 $ echo -n "\xe1\x4f" | ndisasm -b 32 - ...
1
vote
0answers
20 views

How can ndisasm use packsswb in 16-bit mode?

Consider the file generated by the following Bash shell code: echo -n "\x0f\x63\x42\xac" > binarydata Now I run ndisasm on the file to see which instructions it would represent: ndisasm -b 16 ...
0
votes
1answer
38 views

Matrix representation in NASM

I am trying to write a program implementing matrix using NASM. As a beginner, I try to rewrite the following C code in NASM. The C Code: for(i = 0 ; i< 3; i++){ for(j = 0 ;j < 3; ...
0
votes
2answers
34 views

What are the rules of specification of size?

Even though i already specified the size of a variable, i don't understand why i should do it again when using an operation. segment .bss _n resd 1 _m resd 1 segment .text mov **dword**[_n], 10 ...
0
votes
2answers
30 views

Same meaning and different outputs

I've been recently studying the 80x86 assembly language with nasm. However, one of those codes that i've been working on pops up an error! Unfortunately, i don't understand why... Would you give me a ...
0
votes
0answers
34 views

having trouble with .asm

I've tried to compile an .asm with a nasm. However, It didn't go well. Would you please help me out? Here is the .asm file. .asm context .data minho db 100 context .bss extern _hello extern ...
0
votes
1answer
39 views

Assembly near jmp/far jmp to mnemonic real mode

I apologize, my problem is probably very simple I'm just not coming up with a solution. I've tried to read articles, tutorials, and previous questions on that matter (tried looking for a previous post ...
0
votes
1answer
22 views

How to clear console window in NASM?

Is there any interrupt that would allow me to clear console window in NASM? Or do I have to use some trick to get such effect?
0
votes
1answer
21 views

What does mov cx, 02001Q mean in assembly

I'm doing an analysis of the shellcode found at http://www.shell-storm.org/shellcode/files/shellcode-211.php I was wondering what this particular instruction does: mov cx, 02001Q I know it moves a ...
0
votes
1answer
57 views

mmap in nasm using int 0x80 on linux x86

I'm writing a small library in nasm for linux and I'm implementing malloc atm. The C representation of the code would look like void * malloc(int size) { return mmap(0, size, 3, 34, -1, 0); } ...
0
votes
1answer
27 views

problems with stack in NASM

I'm writing a program in NASM that calculates a Fibonacci sequence and prints it. It takes user input for two seed values and the number of iterations, stores them on the stack, and then calls a 'fib' ...
0
votes
1answer
31 views

NASM: emit MSW of non-scalar (link-time) value

I am attempting to define a constant IDT (Interrupt Descriptor Table) entry in NASM, and to do so, I need to emit into a data table the high word of a double-word address that is not resolved until ...
1
vote
2answers
38 views

Segfault accessing BSS memory

section .data bufChar: equ 0 section .bss bufNum: resb 1 bufMult: resb 1 . . . leerNumero: xor eax,eax mov [bufNum],eax add eax,1 mov [bufMult],eax ...
1
vote
1answer
27 views

Nasm entry and exit code of routines

Is there any way to generate the following header and footer for routines in nasm without the need to explicitly code them every time I define a new routine? Header: push ebp mov ebp, esp ...
3
votes
2answers
76 views

How do I create a second stack in NASM

I'm trying to do a two stack sort in assembly. I understand for the first stack you use the system stack; however have no idea how one would implement the second stack.
3
votes
1answer
39 views

Moving from register to effective address

I'm trying to move values from al and bl into effective memory, but I keep getting segmentation faults. What my program does is it takes the value located [esi] and [esi+1], it then rotates these ...
0
votes
2answers
48 views

Retrieving a word from a string literal?

In NASM I have strconst_0 dw 5, 0, __utf16__('hello') (with single backticks) as a string I'm trying to access the 'h' like this (where [ebp+8] is 0 and [ebp+4] is the address of the string) mov ...
0
votes
1answer
48 views

Segmentation fault when passing arrays from C to nasm

I have a C program which calls a function that is implemented in nasm. The C-call: extern void calc(float *, float *, float *, float *); //... float *data1, *data2, *results1, *results2; ...
0
votes
0answers
29 views

Segmentation Fault In NASM Assembly

I am trying to do a simple for loop in assembly, the trouble lines are: cmp ecx, eax ;if i = n-1 jz done_loop call loopify When they are commented out it works (for the first 2 ...
0
votes
1answer
20 views

Division Triple-faults?

I have a small snippet of code in x86 assembler, that divides a number push dword 1193182 ;push the argument mov eax, [ebp+4] push eax ;divide pop ebx pop eax div ebx push eax In this case [ebp+4] ...
0
votes
1answer
74 views

Assembly language instruction [closed]

What is the instruction to invert content of a register? I'm using these two instructions to do an AND logical operation b/w two registers and store its result in 3rd separate register: and ax, dx ; ...
-1
votes
1answer
58 views

NASM assembly program

I am trying to code in assembly with NASM with great frustration...Basically what I'm stuck on is changing a number that is entered into a larger number drawn with $ signs. So what the program does ...
-2
votes
0answers
31 views

Learning assembly programming for x86 [duplicate]

Are there any good resources (online or book) to learn assembly language? Quick searches on Google and Amazon surprisingly led me to nothing interesting. Either really old articles or books, or even ...
0
votes
1answer
37 views

Segmentation fault when pushing on stack (NASM)

I'm trying to get a nasm program running. The following code: segment .data contAir: dt 1.11330e-10 constOil: dt 2.33656e-10 segment .text global calc calc: mov edx, 0 push ebp ;mov ebp, ...
1
vote
2answers
74 views

Brackets on registers in Intel x86 assembly syntax

I tought I understood brackets in x86 assembly. In this example, the register ax should contain X, because brackets represents the current address of LABEL. mov ax, [LABEL] LABEL: db "X", 0 But I ...
0
votes
1answer
53 views

How to read a NASM Assembly program .lst listing file

I wrote a NASM program and created a listing file from it using nasm -f elf -l rs.lst rs.asm. The program, which works perfectly, takes in a key input value, and outputs whether the value is a control ...
1
vote
1answer
30 views

Kernel triple-faults after calling function

I have two functions running in a Kernel, function A and function B. Function A clears the screen and passes control to Function B (which currently does nothing). When control is returned to Function ...
0
votes
1answer
34 views

SImple NASM program to output first number in an array gives Segmentation Fault error

I'm trying to make a really simple NASM program that will output the first value in my array. When I run it, I get a Segmentation Fault. I can't figure out why. The value in the array is a byte, and ...
1
vote
1answer
40 views

How to write in nasm without writing null bytes?

Pretty simple problem. This nasm is supposed to write a user-written message (i.e. hello) to a file, again determined by user input from an argument. It does this just fine, but the problem is, it ...
2
votes
2answers
63 views

Addressing in Assembly

I'm currently working on a tutorial that demonstrates how to build an OS from scratch. In some section of the tutorial there was some assembly code that demonstrates addressing. The code simply ...
1
vote
1answer
33 views

Calling Assembly Functions in Nasm

I'm currently working on building a simple OS from scratch , so i'm testing some boot sector code and i'm simulating it using Qemu. My boot sector code is supposed to print 'A' when the OS boots. ...
0
votes
1answer
86 views

Assembly (x86) NASM Assembler Tutorials [closed]

I am very new to Assembly Programming, and I have already installed NASM (netwide assembler) for the x86 system. I would like to know what (in simplest terms possible) all of the tokens mean. Like I ...
-1
votes
1answer
89 views

sorting in assembly language getting incorrect output [closed]

I have written sorting code in assembly, but I have a problem in printing out the output. The code outputs: Enter the number of elements less than 10: 3 Enter the elements : 8 1 3 The sorted Array ...
1
vote
1answer
39 views

Popping and printing argc from the stack

According to this paper and a few stackoverflow posts, argc is at the top of the stack and argv is below it. I've tried about 3-4 different ways of doing it: Popping it into an initialized variable ...
0
votes
1answer
106 views

scanf in x86 assembly language

I try to sort using x86 assembly language. I use scanf for taking in the values but I am not able to limit the number of elements to take. That is, my output is: Enter the number of elements less ...
2
votes
1answer
128 views

Calling C function from assembly, segfault

I'm writing an assembly function to replace letters in a string, char by char, if that char, passed to a function (given by a function pointer param), returns 1. For instance, if isVowel(c) returns ...
0
votes
3answers
59 views

calling assembly function from c with reference parameter

I'm implementing an assembly function to reverse a string. This function is being called in C with the signature void strrev(char *str) ; Everything seems to be working fine within the function, ...
1
vote
1answer
33 views

modulus operator in nasm

Good day, I'm trying to use the modulus operator in nasm but I keep getting an error... I want to encrypt strings entered by the user... so the encryption must be within the 26 alphabet range.. e.g. ...
0
votes
1answer
92 views

Ret illegal instruction

I'm working with a project that implements a function in assembly that is called in a main.c. The signature function declaration in C is void strrev(char *str) ; The Ret instruction is giving me an ...
1
vote
1answer
65 views

using ebp/esp in conjunction with edi/esi

I'm working on a project that is implementing functions in assembly and calling them in C. Doing this requires working with EBP and ESP. [EBP + 8] is pointing to the beginning of a string that I ...
0
votes
1answer
150 views

assembly reading binary number to decimal 8086 (NASM)

i dont see what am i doing wrong. I need to to binary calculator which input format is something like "00000001b+00000010b ... the output needs to be in binary too ... the operator can be +,-,*,/. ...
1
vote
1answer
98 views

Implementing cat>fileName command in NASM

I try to implement cat>filename command in NASM in Ubuntu 11.04 using system calls. My program is compiled successfully and run successfully (seems so). But whenever I tried to fire cat filename ...
0
votes
1answer
50 views

How to debug a program/view registers that require user input

I have an assembly program that I'm trying to test via debug, however the program usually has user input for the integers. Is there a way to debug the program and still be able to 'run' it in the ...
0
votes
1answer
48 views

Array expression syntax error

i am trying to create an array with 5 data strings in it each comprised of 3 0's and a lowercase letter. When I go to compile my code it gives me an error for that line saying expression syntax is ...
1
vote
1answer
31 views

syscall return 07 when call _exit

I am looking a paper Size Is EverythingSize Is Everything with kernel 3.8.4 x64 nasm gcc-4.7.2 fedora by type in moretiny.asm BITS 64 EXTERN _exit GLOBAL _start SECTION .text _start: push ...
0
votes
1answer
56 views

gcc breaking rax value after function call

I am rewriting some C functions in ASM for practicing. My memset function is setting RAX to the same address passed in the RDI register. But gcc is extending the AL's value with the CDQE instruction. ...

1 2 3 4 5 15