Tagged Questions
The Flat ASseMbler (FASM) is a fast and efficient self-assembling x86 assembler for DOS, Windows and Linux operating systems.
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.
4
votes
2answers
195 views
Initializing array in assembler
I just started learning ASM, I have C experience but I guess it doesn't matter.
Anyway how can I initialize a 12 elements array of DT to 0s, and how not to initialize it?
I use FASM.
3
votes
2answers
145 views
Harnessing AsmXML with Delphi
AsmXML written by Marc Kerbiquet seems to be promising as an xml parser. I want to harness it further with Delphi but I stumble because of an object format compatibily issue. Is it possible to tweak ...
3
votes
3answers
615 views
How can I go about writing to the console in fasm?
The code I currently have can be found at: http://fasm.pastebin.com/yY3C0aVF
I'm exceptionally new to assembly, only picked it up yesterday and I've looked through many an example and still can't ...
3
votes
1answer
550 views
How to debug programms written in fasm under linux using gdb?
I wrote simple "hello, world" in fasm, and its works, but how i can generate debug info for gdb and edb (Evan's Debugger)? Fasm compiler could only produce debugging symbols in its specific format - ...
2
votes
2answers
111 views
Putting Two ORGs Together
I'm building a boot loader that boots the content that is located at the 1000h part of the floppy. I was doing that using Fasm(because my friend only uses Fasm, and he was helping me with this), but I ...
2
votes
2answers
807 views
FASM vc MASM trasnlation problem in mov si, offset msg
just did my first test with MASM and FASM with the same code (almos) and I falled in trouble. The only difference is that to produce just the 104 bytes I need to write to MBR in FASM I put org 7c00h ...
2
votes
1answer
279 views
Mach-O binaries using FASM
is anybody using FASM to produce Mach-O binaries?
it's my assembler of choice and I thought it would be nice to learn whether that's possible to accomplish and whether somebody is already doing it.
...
2
votes
2answers
520 views
Assembler: Using “Flat assembler” how do I produce EXE files (compile, link..)?
I'm using FASM to compile a small piece of code:
mov ah,4ch
mov al,00
int 21h
I click Run -> Compile, and what I get is a .BIN file.
sorry for the noobish question but why don't I get an ...
2
votes
4answers
4k views
How do you generate a random number in Assembly language using the FASM compiler?
Hey guys, I'm really new to assembly and I'm trying to create a simple program. For this I need to generate a random number.
Anybody know how I can do this with the FASM compiler?
Thanks,
Sam
1
vote
2answers
17 views
FASM: Dynamic array
How can I store variables in an array, which size is known only on run-time? How can I access elements of this array? I think it should be easy, but I don't see a way.
I mean something like dynamic ...
1
vote
2answers
45 views
X86: protected mode, GDT, IDT
I've tried to execute simple kernel with a kolibri bootloader.
It's being loaded into 1000:0000.
I don't understand, what's wrong in this part:
...
; switch to PM
mov eax, cr0
or al, 1
mov cr0, eax
...
1
vote
1answer
38 views
Asm. How to set RC bits of CW?
Excuse me for my English.
How to set in control word of FPU bits in RC to 3?
It helped me:
fstcw word ptr cw
or word ptr cw, 110000000000b
fldcw word ptr cw
1
vote
1answer
138 views
How to compile DOS programs using MASM or FASM
I want to compile simple program using assemblers such as MASM or FASM.
Ideal
model small
Stack 256
Dataseg
str1 db 'hello','$'
Codeseg
Startupcode
lea dx, [str1]
mov ah, 09h
int 21h
...
1
vote
1answer
236 views
External procedure in FASM
I have been trying to export procedure from external file to the main assembly program, but it didn't work.
Here is test code from external file:
; Export procedure Summa
format PE GUI 4.0
include ...
1
vote
2answers
258 views
Virtual Machine implemented in assembly on an x86
I was just wondering if anybody here has written or knows where I can find a simple virtual machine written in x86 assembly, preferably Fasm, but anything would serve as an example as long as it is ...
1
vote
1answer
167 views
Gnu Assembler (GAS) Optimizations
Im actually learning assembly and I went with Gas, but the problem is:
1) I only know Intel syntax and I saw in a page Gas with intel syntax is not very good optimized in some cases. Is this correct ...
1
vote
3answers
929 views
FASM HelloWorld .exe program
I tried to write my first .exe program on FASM. It works ok when I use org 100h, but I want to compile .exe file. When I replaced first line with "format PE GUI 4.0" and tried to compile it the error ...
1
vote
1answer
107 views
FASM running error with jmp
I've started learning 16-bit assembly (eventually moving up to 32-bit) from this tutorial here:
http://matthew-4gl.wikispaces.com/fasm_tutorial
and I am doing a few tests and practices on the flat ...
1
vote
2answers
218 views
Ret Failure with SDL using FASM on Win32
I'm using SDL with FASM, and have code that's minimally like the following:
format ELF
extrn _SDL_Init
extrn _SDL_SetVideoMode
extrn _SDL_Quit
extrn _exit
SDL_INIT_VIDEO equ 0x00000020
section ...
0
votes
0answers
17 views
FASM - Winsock, reconnection issue
I am learning assembly and trying to write a simple WinSock app in educational means.
Although mostly everything works fine, I am having an issue when trying to reconnect;
start:
invoke ...
0
votes
1answer
27 views
FASM: How to send struct to proc?
I have a struct like this:
struct MESGE
TEXT db 'Message',0
mLen db 8
ends
And I need to send it to a proc, which will show line on a screen:
proc OutMes, pMESG:MESGE
push 0
push ...
0
votes
1answer
43 views
Printing out registers/ints to console | FASM | WINAPI
Just wondering if there was a way i could print out a number to the console
by invoking. it can be either base 10, or hex I don't mind.
I would like to see the format in which some functions return.
...
0
votes
1answer
82 views
How to write to StdOut in Windows and FASM?
The question is pretty simple, yet I can't seem to find how to do it: how do I write to StdOut in Windows/FASM?
There does not seem to be any documentation online. Ideas?
0
votes
1answer
75 views
fasm and glut simple example with .inc file
I need a simple example created with fasm and using glut lib.
I search on internet but seam nobody have a correct glut.inc file.
Regards.
0
votes
1answer
47 views
Fasm “while” problem
I'm trying to write a simple "while" in fasm that print A into DOS console 4 times. Here the code
org 100h
use16
jnp ciclo
ciclo:
cmp [c],0
jle fine
mov ah,02h
mov ...
0
votes
1answer
124 views
Simple code, app has stopped working
I start to learn asm using fasm, unfortunately after compile code below I get error: "app has stopped working", I use Win7 64bit. Has anybody any idea why it doesn't work?
format PE Console 4.0
...
0
votes
1answer
63 views
Standalone 32-bit Assembly programs
I am a newbie in assembly and still trying to gain some basic foundation on assembly programming. I was a bit shocked when I discovered the fact that 32-bit protected mode assembly relies too much on ...
0
votes
1answer
336 views
How to run Assembly Code in FASM
Hello I downloaded FASM to run Assembly code.
I need to write a small program like this
Sum:
push %ebp
movl %esp, %ebp
movl 8(%ebp), %ecx
movl 12(%ebp), %edx
xorl %eax, %eax
testl %edx, %edx
...
0
votes
1answer
131 views
FASM using custom resource files
How do I include my custom resource files and be able to access them with the windows api?