CC=gcc
CXX=g++
CFLAGS+=-O3 -Wall
CXXFLAGS=$(CFLAGS)

siddumptvc.exe: siddump.o cpu.o
	gcc -o $@ $^
	strip $@
