0xDE5

Trying to solve and expand 0xde5 exercises in assembly (or C)
git clone git://git.mdnr.space/0xDE5
Log | Files | Refs | README | LICENSE

commit 4a435efdfacce7ae896c783484530237120444a8
parent 98a2f7b9fef05e5d37043a235205b00ffed53ff9
Author: mehdi-norouzi <mehdeenoroozi@gmail.com>
Date:   Fri,  1 Nov 2024 21:46:20 +0330

add build script

Diffstat:
Abuild.sh | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/build.sh b/build.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +mkdir -p bin +as --64 -g -o ./bin/rpn.o ./stack/postfix/rpn.s && ld -m elf_x86_64 ./bin/rpn.o -o ./bin/rpn.exe +as --64 -g -o ./bin/wcx64e.o ./wcx64/wcx64e.s && ld -m elf_x86_64 ./bin/wcx64e.o -o ./bin/wcx64e.exe