blob: 82688c8d6f6b622f6490b7d7d13cc311a8429372 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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
|