Pelles C forum

Assembly language => Assembly discussions => Topic started by: Jokaste on September 26, 2017, 06:52:55 PM

Title: Reflexions about asm and PoAsm
Post by: Jokaste on September 26, 2017, 06:52:55 PM
Only 3 error messages
With the largeAddress.... it is complicated, allways do


Code: [Select]
mov rax,OFFSET szSomeThing
mov rcx,[rax]


rather than


mov rcx,szSomeThing


This is not Pelle's fault.


Because the stack is reserved PARAMAREA parameter, can't make any push into the code, just for saving registers (PROLOGUE)


Can't debug efficiently(?) because the debugger has one line (or two) in late with the real code. Obliged to use the disassembler.


Programming in asm 32 bits was easier, the goold old times.


PoAsm is easy to use for all the other things, fast, very fast.
Easy to use PROTO macro.
Starting from zero I easily created windows' protos and interfaces for the libraries.


I did not understand why Timo uses the rip for addressing.