Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions spasm/solution/genie.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ end
uuid(os.uuid('sprt'))
files '../src/*.cpp'
removefiles '../src/main.cpp'
files '../src/*.h'
files '../src/*.hpp'

project 'spasm_lib'
kind 'StaticLib'
Expand All @@ -51,7 +51,7 @@ end
'../src/asm/lexdump.cpp',
'../src/asm/lexdump3.cpp',
}
files '../src/asm/*.h'
files '../src/asm/*.hpp'

project 'spasm'
kind 'ConsoleApp'
Expand All @@ -64,7 +64,7 @@ end
'../src/asm/lexdump.cpp',
'../src/asm/lexdump3.cpp',
}
files '../src/asm/*.h'
files '../src/asm/*.hpp'

project 'sprun'
kind 'ConsoleApp'
Expand Down
2 changes: 1 addition & 1 deletion spasm/src/asm/bytecode.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace ASM
class Bytecode_Stream
{
public:
typedef int8_t byte;
typedef uint8_t byte;
typedef byte Opcode_t;

virtual ~Bytecode_Stream();
Expand Down
2 changes: 1 addition & 1 deletion spasm/src/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace SpasmImpl
{
typedef int8_t byte;
typedef uint8_t byte;
typedef size_t PC_t;
typedef Spasm::Value data_t;

Expand Down