From 49237080a292581e4116ca29301cfaefbbbff002 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 24 May 2015 16:09:51 -0400 Subject: [PATCH] Start reorganizing for tests; add cloc.sh; fix version. --- scripts/cloc.sh | 1 + src/version.h | 2 +- tests/{ => z80}/01_basic_math.asm | 0 tests/{ => z80}/_header.asm | 0 4 files changed, 2 insertions(+), 1 deletion(-) create mode 100755 scripts/cloc.sh rename tests/{ => z80}/01_basic_math.asm (100%) rename tests/{ => z80}/_header.asm (100%) diff --git a/scripts/cloc.sh b/scripts/cloc.sh new file mode 100755 index 0000000..dd1cfd8 --- /dev/null +++ b/scripts/cloc.sh @@ -0,0 +1 @@ +cloc src/ tests/ scripts/ crater.c makefile --exclude-ext=sh diff --git a/src/version.h b/src/version.h index d68f8c4..5d94c86 100644 --- a/src/version.h +++ b/src/version.h @@ -3,4 +3,4 @@ #pragma once -#define CRATER_VERSION "0.1.0-dev" +#define CRATER_VERSION "0.1.dev0" diff --git a/tests/01_basic_math.asm b/tests/z80/01_basic_math.asm similarity index 100% rename from tests/01_basic_math.asm rename to tests/z80/01_basic_math.asm diff --git a/tests/_header.asm b/tests/z80/_header.asm similarity index 100% rename from tests/_header.asm rename to tests/z80/_header.asm