2021-01-29 19:17:59 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-02-08 22:18:01 +00:00
|
|
|
# Create bin folder
|
|
|
|
mkdir -p bin
|
2021-01-29 19:17:59 +00:00
|
|
|
|
2021-02-08 22:18:01 +00:00
|
|
|
# Assembler
|
|
|
|
clang-format -i assembler.c
|
2021-02-09 05:59:46 +00:00
|
|
|
rm -f ./bin/assembler
|
|
|
|
rm -f ./bin/boot.rom
|
2021-02-08 22:18:01 +00:00
|
|
|
cc -std=c89 -DDEBUG -Wall -Wno-unknown-pragmas -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined assembler.c -o bin/assembler
|
2021-01-29 19:17:59 +00:00
|
|
|
|
2021-02-09 18:06:55 +00:00
|
|
|
# Core
|
2021-02-08 22:18:01 +00:00
|
|
|
clang-format -i uxn.h
|
|
|
|
clang-format -i uxn.c
|
2021-02-09 18:06:55 +00:00
|
|
|
|
|
|
|
# Cli
|
|
|
|
clang-format -i cli.c
|
2021-02-09 18:58:06 +00:00
|
|
|
# rm -f ./bin/cli
|
|
|
|
# cc -std=c89 -DDEBUG -Wall -Wno-unknown-pragmas -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined uxn.c cli.c -o bin/cli
|
2021-02-09 05:59:46 +00:00
|
|
|
|
|
|
|
# Emulator
|
2021-02-09 18:06:55 +00:00
|
|
|
clang-format -i emulator.c
|
2021-02-09 18:58:06 +00:00
|
|
|
rm -f ./bin/emulator
|
|
|
|
cc -std=c89 -DDEBUG -Wall -Wno-unknown-pragmas -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined uxn.c emulator.c -L/usr/local/lib -lSDL2 -o bin/emulator
|
2021-01-29 19:17:59 +00:00
|
|
|
|
|
|
|
# run
|
2021-02-10 01:22:52 +00:00
|
|
|
./bin/assembler examples/mouse.usm bin/boot.rom
|
2021-02-09 18:58:06 +00:00
|
|
|
./bin/emulator bin/boot.rom
|