Huge amount of work. Does not even nearly compile, but it's nearer.

This commit is contained in:
Simon Brooke 2026-03-28 23:46:14 +00:00
parent 1afb1b9fad
commit cae27731b7
31 changed files with 407 additions and 96 deletions

View file

@ -3,7 +3,7 @@
#include <stdlib.h>
#include <string.h>
#define TAGLENGTH 4
#define TAGLENGTH 3
struct dummy {
union {
@ -21,6 +21,6 @@ int main( int argc, char *argv[] ) {
strncpy( &buffer.tag.bytes[0], argv[i], TAGLENGTH );
printf( "%4.4s:\t%d\n", argv[i], buffer.tag.value);
printf( "%4.4s:\t%d\n", argv[i], buffer.tag.value & 0xffffff);
}
}