summaryrefslogtreecommitdiff
path: root/README.TXT
blob: 1bf78769341c94a4eb4248b887574771a007de5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
This repo is to store my code as I learn assembly. 
This is going to be a dump of stupid "Hello World" programs, at least for the begging.


This code is licensed under the ISC license, Copyright (C) 2024 Schizoid Party.


=== Compiling === 

as src/first.s -o build/first.o && gcc -o build/first build/first.o -nostdlib -static

nasm -f elf64 -o build/hello.o src/x86_64.asm && ld build/hello.o -o build/hello