Reference for the asm syntax

Started by Vortex, September 15, 2004, 10:56:28 PM

Previous topic - Next topic

Vortex

Hi Pelle,

To create an asm listing, we use the /Tx86-asm option. My question is that have you a complete reference / manual explaining the asm syntax used by Pocc? Some statements appearing in the listing are unclear for me.
Example code:

#include <stdio.h>

void main(int argc,char *argv[])
{
char *s="Pelles C";
printf("%s",s);
}


pocc /Ze /Zx /Tx86-asm Sample.c


[cpu 486]
[global _main]
[section .text]
[function _main]
_main:
push ebp
mov ebp,esp
sub esp,4
lea eax,[(@2)]
mov dword [ebp+(-4)],eax
mov eax,dword [ebp+(-4)]
push dword eax
push dword (@3)
call _printf
add esp,(8+3)&(~3) ;This syntax?
@1:
mov esp,ebp
pop ebp
ret
..?X_main:     ; What does mean the symbols ..?X ?
[extern _printf]
[section .rdata]
@3:
db '%s',0
@2:
db 'Pelles C',0
[section .drectve]
db " -defaultlib:crt"


Many thanks,

Vortex
Code it... That's all...

Pelle

Hello Vortex,

Not really. Not many questions about it, so far. The basic syntax is probably closest to the NASM assembler, which was popular a few years back.


add esp,(8+3)&(~3) ;This syntax?

The purpose is to align the stack pointer to a DWORD. In this case it just tries to align the value 8, which is already aligned, but the compiler uses templates, so it sometimes looks more complicated than it is...


..?X_main:     ; What does mean the symbols ..?X ?

Labels starting with . (one dot) are local, labels starting with ..? are local and 'special', which (today) only means they don't end up in the debugging information.

Pelle
/Pelle

Vortex

Hi Pelle,

Thanks for the info.

To discover Pocc's asm syntax, I think the best method is to study the asm listings. ( and maybe to study also Nasm )
Code it... That's all...