mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-10 01:30:32 +00:00
20 lines
280 B
C
20 lines
280 B
C
|
#ifdef _MSC_VER
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include <functional>
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <fstream>
|
||
|
|
||
|
#include <string>
|
||
|
#include <array>
|
||
|
#include <vector>
|
||
|
|
||
|
#if defined(_M_X64) || defined(_M_IX86 )
|
||
|
# define HOST_LITTLE_ENDIAN
|
||
|
#else
|
||
|
# define HOST_BIG_ENDIAN
|
||
|
#endif
|