1
0
Fork 0

Update README.md

This commit is contained in:
davtur19 2023-10-30 01:37:05 +01:00
parent e7c373f3bd
commit fdf26032d2
1 changed files with 8 additions and 1 deletions

View File

@ -5,6 +5,13 @@ La figa a 64bit è meglio
# Come faccio a compilare `figasm` da sorgente?
```bash
nasm -f elf64 -o figa.o figa.s
nasm -f elf64 -o figa.o figa.asm
ld figa.o -o figa
```
# Ma a me piace windows!!1
```cmd
nasm -f win64 -o figa.o figawin.asm
ld -o figa.exe figa.o -entry=Start --subsystem=console -lkernel32
```