diff options
author | Ian C <ianc@noddybox.co.uk> | 2017-02-13 14:51:10 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2017-02-13 14:51:10 +0000 |
commit | e32f2e83046435767f3915a5e259fd8e1c79acd1 (patch) | |
tree | 03fa2074913462992611eef4afde54e55dcb1c07 /src/example/dump.c | |
parent | a3beda2846259a26487f125323b85930628db99f (diff) |
Attempts to make CPC output work.
Diffstat (limited to 'src/example/dump.c')
-rw-r--r-- | src/example/dump.c | 5 |
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); } |