DEV Community

Discussion on: Welcome Thread - v103

Collapse
 
dispatchcode profile image
Marco Crivellari
include        c:\masm32\include\masm32rt.inc

.data

dbHello    db    "Hello World!",0

.data?

.code
start:

    print  offset dbHello

    push  0
    call  ExitProcess

END  start
Enter fullscreen mode Exit fullscreen mode

Hi everyone,
I'm Marco, 30 years old from Italy. I'm working as a backend software developer, but in my free time I love doing low-level things.

My last project is called MCA (Machine Code Analyzer), a x86/x64 machine code decoder. It is useful to get instructions' length and identify each of its fields (you can find more on my GitHub - MCA.

Thank you everyone, have a nice day and stay safe! ;)