2023-12-03 19:24:12 +00:00
|
|
|
SOURCE=brainfuck_interpreted.asm brainfuck_compiled.asm brainfuck_mandelbrot.asm pipeline_ideal.asm fibonacci.asm gnome_sort.asm cache_fill_and_empty.asm colored_led.asm bios.asm
|
|
|
|
BINARIES=$(subst .asm,.txt,${SOURCE}) $(subst .asm,.stxt,${SOURCE})
|
2023-02-16 01:46:22 +00:00
|
|
|
BUILD_FILES=${BINARIES}
|
|
|
|
BUILD_FILES+=$(subst .asm,.memdump,${SOURCE})
|
2023-03-05 00:10:55 +00:00
|
|
|
BUILD_FILES+=$(subst .asm,.fst,${SOURCE})
|
2023-02-16 01:46:22 +00:00
|
|
|
BUILD_FILES+=$(subst .asm,.bin,${SOURCE})
|
2023-05-14 15:06:33 +00:00
|
|
|
BUILD_FILES+=$(subst .asm,.json,${SOURCE})
|
2023-02-16 01:46:22 +00:00
|
|
|
|
|
|
|
all: ${BINARIES}
|
|
|
|
|
2023-03-14 07:20:30 +00:00
|
|
|
brainfuck_interpreted.bin: brainfuck_interpreter_v0.asm hello_9086.bf.asm dos_layer.asm
|
|
|
|
brainfuck_compiled.bin: brainfuck_compiler_v1.asm hello_9086.bf.asm dos_layer.asm
|
|
|
|
brainfuck_mandelbrot.bin: brainfuck_compiler_v1.asm mandelbrot.bf.asm dos_layer.asm
|
2023-11-12 13:30:12 +00:00
|
|
|
colored_led.bin: dos_layer.asm
|
2023-12-05 03:06:59 +00:00
|
|
|
bios.bin: LiteDram_init.asm brainfuck_compiler_v1.asm
|
2023-03-03 19:36:28 +00:00
|
|
|
|
2023-05-21 00:48:50 +00:00
|
|
|
fibonacci.bin: helpers.asm
|
|
|
|
gnome_sort.bin: helpers.asm
|
|
|
|
|
2023-03-03 19:36:28 +00:00
|
|
|
%.bf.asm:%.bf
|
|
|
|
${Q}sed "s/[a-zA-Z\* ]//g;/^$$/d;s/^/.ASCII '/;s/\$$/'/" "$^" > $@
|
2023-02-19 00:20:53 +00:00
|
|
|
|
2023-02-22 01:51:14 +00:00
|
|
|
NO_ASM=0
|
2023-02-16 01:46:22 +00:00
|
|
|
include ../common.mk
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(call QUIET_CLEAN,boot_code)
|
2023-03-05 00:10:55 +00:00
|
|
|
${Q}rm -f $(BUILD_FILES) *.bf.asm
|