CAR: added stack operations, call, ret, jmp and some other random stuff

This commit is contained in:
2026-07-18 19:28:11 -05:00
parent 5902eae153
commit 1f11242762
10 changed files with 294 additions and 20 deletions

4
run
View File

@ -4,8 +4,8 @@
# CAR (Cool ARM Ripoff) copyright (c) 2026 David J Goeke. All rights reserved.
# Unauthorized (re)distribution is prohibited.
FILES="processor.c load_store.c operations.c helpers.c main.c"
CFLAGS="" #"-g -O0 -fsanitize=address"
FILES="processor.c fpu.c misc.c load_store.c operations.c helpers.c main.c"
CFLAGS="-O2 -Wall" #"-g -O0 -fsanitize=address"
TARGET="vm"