65oo2/vm/cpu.h

16 lines
187 B
C
Raw Normal View History

2024-02-29 12:01:58 +00:00
#ifndef VM_CPU_H
# define VM_CPU_H 1
# include <stdint.h>
typedef struct
{
uint32_t PC;
uint32_t A;
uint32_t X;
uint32_t Y;
uint8_t SR;
uint32_t SP;
} Cpu;
#endif /* !VM_CPU_H */