disassemble every single opcode

This commit is contained in:
2025-07-13 19:54:57 +02:00
parent 212f5aa9cc
commit b24fc558cc
3 changed files with 313 additions and 20 deletions

View File

@@ -1,4 +1,6 @@
#!/bin/bash
set -xe
cc -O3 -o chip8 chip8.c -L/usr/local/lib/libraylib.a -lraylib -lm
cc -O3 -o mos6502 mos6502.c
CFLAGS="-Wall -Wextra -Wpedantic -std=c99 -O3"
cc $CFLAGS -o chip8 chip8.c -L/usr/local/lib/libraylib.a -lraylib -lm
cc $CFLAGS -o mos6502 mos6502.c