aboutsummaryrefslogtreecommitdiff
path: root/src/example/dump.c
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2017-02-13 14:51:10 +0000
committerIan C <ianc@noddybox.co.uk>2017-02-13 14:51:10 +0000
commite32f2e83046435767f3915a5e259fd8e1c79acd1 (patch)
tree03fa2074913462992611eef4afde54e55dcb1c07 /src/example/dump.c
parenta3beda2846259a26487f125323b85930628db99f (diff)
Attempts to make CPC output work.
Diffstat (limited to 'src/example/dump.c')
-rw-r--r--src/example/dump.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/example/dump.c b/src/example/dump.c
index 648aacd..71d153a 100644
--- a/src/example/dump.c
+++ b/src/example/dump.c
@@ -129,5 +129,10 @@ int main(int argc, char *argv[])
printf("Got %d blocks\n", count);
+ for(f = 0; f < count; f++)
+ {
+ printf("Block %d len %d\n", f, block[f]->len);
+ }
+
CompareEnds(block, count);
}