1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Introduces a couple of missing #includes.

This commit is contained in:
Thomas Harte 2019-05-03 14:37:05 -04:00
parent ae31d45c88
commit c117deb43b
2 changed files with 4 additions and 1 deletions

View File

@ -6,6 +6,8 @@
// Copyright © 2019 Thomas Harte. All rights reserved.
//
#include <cstring>
#define get_ccr() \
( \
(carry_flag_ ? 0x0001 : 0x0000) | \

View File

@ -9,8 +9,9 @@
#include "../68000.hpp"
#include <algorithm>
#include <sstream>
#include <cassert>
#include <map>
#include <sstream>
namespace CPU {
namespace MC68000 {