1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-09 06:29:33 +00:00

Evicts #includes from my namespace.

This commit is contained in:
Thomas Harte 2019-05-03 14:48:39 -04:00
parent a873ec97eb
commit 0ea4c1ac80
2 changed files with 2 additions and 6 deletions

View File

@ -10,10 +10,10 @@
#define MC68000_h #define MC68000_h
#include <cstdint> #include <cstdint>
#include <cstring>
#include <iomanip> #include <iomanip>
#include <iostream> #include <iostream>
#include <tuple> #include <ostream>
#include <vector>
#include "../../ClockReceiver/ClockReceiver.hpp" #include "../../ClockReceiver/ClockReceiver.hpp"
#include "../RegisterSizes.hpp" #include "../RegisterSizes.hpp"

View File

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