Files
2025-10-06 00:14:04 -04:00

13 lines
193 B
C

#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