Initial commit

This commit is contained in:
2025-10-06 00:14:04 -04:00
commit d98bdabb74
553 changed files with 32764 additions and 0 deletions

12
p2-load/y86.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef __CS261_Y86__
#define __CS261_Y86__
#include <stdint.h>
#define VADDRBITS 12
#define MEMSIZE (1 << VADDRBITS)
/* type declarations */
typedef uint8_t byte_t; // byte
#endif