4-bit virtual CPU
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
329 B

.PHONY: build clean test unit-tests acceptance-tests all
all: build test
build:
@cargo build --release
clean:
@cargo clean
test: unit-tests acceptance-tests
unit-tests:
@cargo test
acceptance-tests: build
@acceptance-tests/main.py
# Examples
.PHONY: print_opcodes
print_opcodes:
@cargo run --example print_opcodes