Change word to use int as base

This commit is contained in:
drmortalwombat 2021-11-04 10:55:37 +01:00
parent 180da3de4a
commit fe155d40d4

View File

@ -2,7 +2,7 @@
#define C64_TYPES_H
typedef unsigned char byte;
typedef unsigned short word;
typedef unsigned int word;
typedef unsigned long dword;
typedef signed char sbyte;