1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-02 07:41:32 +00:00
erc-c/include/vm_bits.h

15 lines
326 B
C
Raw Permalink Normal View History

2017-12-02 19:05:53 +00:00
#ifndef _VM_BITS_H_
#define _VM_BITS_H_
#include <stdlib.h>
2017-12-07 03:37:14 +00:00
/*
* We use the 8bit and 16bit types everywhere within the "vm"
* abstraction; they are also used where applicable within the other
* systems, like the mos6502 cpu, within the apple2 machine, etc.
*/
2017-12-02 19:05:53 +00:00
typedef uint8_t vm_8bit;
typedef uint16_t vm_16bit;
#endif