mirror of
https://github.com/pevans/erc-c.git
synced 2024-11-27 20:51:17 +00:00
10 lines
122 B
C
10 lines
122 B
C
|
#ifndef _VM_BITS_H_
|
||
|
#define _VM_BITS_H_
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
typedef uint8_t vm_8bit;
|
||
|
typedef uint16_t vm_16bit;
|
||
|
|
||
|
#endif
|