I'm want to instal nasm on elemantry os Linux that is based on Ubuntu, i try this command to install:
sudo apt -get install nasm
but i received this error:
cannot locate nasm
how i can install nasm? Or is it any other linux that install nasm as default and worked better for assembly language ? (fedora , suse, ...)
There are only two files, main.c and kernel.asm, and I tried to make a program with them using NASM and GCC.
THE PROBLEM, IN SHORT, IS THAT IT DOES NOT OUTPUT ANYTHING.
I've been literally ~7hours coding 4 simple assembly programs today on NASM...
I am writing a bubble sort algorithm in assembly. I get an error: "Segmentation fault (core dumped)". What does that mean? (I am new to assembly.
Hi There ;
I am searching for the IDE that can compile and debug a NASM code. I am using ubuntu 10.04 and I can make compile via terminal but I must view registers for educational purposes. Is there any suggestions? Thanks in advance.
Im trying to make a vga program for linux Im wondering if anyone knows of a simple document on the subject or if someone could show me some basics. What system calls should I use what parameters should I give them. How do I draw a line of pixels green after in vga mode. I prefer nasm but I can use as but I like intel syntax. Also is it ok to ask a question about linux here?
I am trying to debug a jar file with attached source code. I am able to debug it step by step, but unable to see any variable values.
Can anyone help me with this?
Hello, I am trying to learn programming using gas.But I did not find any tutorial that will show me the simplest program sample that I can run on my PC.
I searched over Internet from a day, but I didn't find it.
I want a sample code that will store(move) value 1 into register eax and steps for assembling and loading ..thanks..That will surely help me to get sta
I'm trying to write 4 bytes to the screen using:
nasm -f elf -g ****.asm
Nothing is happening.
Here is the relevant code segment:
mov eax, 4 ; ow print error mesg
mov ebx, 1
mov ecx, DWORD [para]
mov edx, 4
int 080h
This is my debug run of that portion of my code.