Compare commits

...

2 Commits

Author SHA1 Message Date
Greg Shuflin
4bc85d8dd5 Add gitignore 2022-01-29 22:01:20 -08:00
Greg Shuflin
9f1cc98a75 Move gamarjoba into subdir 2022-01-29 22:01:00 -08:00
4 changed files with 15 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
*.o
gamarjoba_munde/gamarjoba

View File

@@ -3,6 +3,9 @@
This repo is a sandbox for experimenting with bare metal code and other
low-level programming concerns.
This repo contains the following executables:
* `gamarjoba_munde` - x86-64 linux binary that prints the text "Gamarjoba, Munde"
# Useful links

9
justfile Normal file
View File

@@ -0,0 +1,9 @@
default:
just --list
run_gamarjoba: build_gamarjoba
./gamarjoba/gamarjoba
build_gamarjoba:
nasm -f elf64 -o gamarjoba/gamarjoba.o gamarjoba/gamarjoba.asm
ld -o gamarjoba/gamarjoba gamarjoba/gamarjoba.o