From 19e5a5acc899a84c69b1f730605372b22e780f72 Mon Sep 17 00:00:00 2001 From: Michaelangel007 Date: Tue, 25 Apr 2017 09:14:11 -0700 Subject: [PATCH] Add 6502 low and high byte assembly output --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index e6ec30d..f7ef1df 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ all: test_mock scales freq +clean: + rm freq 0freq 1freq + .PHONY: test_mock C_FLAGS=-Wall -Wextra @@ -14,4 +17,6 @@ scales: scales.s freq: freq.c g++ $(C_FLAGS) $< -o $@ + cp freq 0freq + cp freq 1freq