aboutsummaryrefslogtreecommitdiff
path: root/client/src/assembler/opcodes.h
blob: cc21ef0cc96936c88704bd735df1efc90c429f4c (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once


namespace assembler {
	enum opcodes : uint8_t {
		nop = 0x90,
		ret = 0xc3S
	};
};