Move gamarjoba into subdir

This commit is contained in:
Greg Shuflin
2022-01-29 21:58:19 -08:00
parent 4206ae592b
commit eaece6994a
3 changed files with 12 additions and 0 deletions

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_munde/gamarjoba
build_gamarjoba:
nasm -f elf64 -o gamarjoba_munde/gamarjoba.o gamarjoba_munde/gamarjoba.asm
ld -o gamarjoba_munde/gamarjoba gamarjoba_munde/gamarjoba.o