projects
/
c64tapwav
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add some heuristics to deal with shorter initial sync periods.
[c64tapwav]
/
tap.h
1
#ifndef _TAP_H
2
#define _TAP_H
3
4
#define TAP_RESOLUTION 8
5
6
struct tap_header {
7
char identifier[12];
8
char version;
9
char reserved[3];
10
unsigned int data_len;
11
};
12
13
#endif // !defined(_TAP_H)