16 lines
187 B
C
16 lines
187 B
C
#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 */ |