mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-03-06 06:30:14 +00:00
A few small tidy ups.
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
This commit is contained in:
parent
88d3e4fd47
commit
8f84d57fe1
@ -2,8 +2,7 @@
|
||||
#include "mos6502.h"
|
||||
|
||||
EightBit::MOS6502::MOS6502(ProcessorType cpuLevel)
|
||||
: level(cpuLevel)
|
||||
{
|
||||
: level(cpuLevel) {
|
||||
Install6502Instructions();
|
||||
Install65sc02Instructions();
|
||||
Install65c02Instructions();
|
||||
|
@ -1 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <functional>
|
||||
|
||||
#include <string>
|
||||
#include <array>
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
#include <sstream>
|
||||
#include <iomanip>
|
||||
#include <fstream>
|
||||
|
||||
#include <boost/algorithm/string.hpp>
|
||||
#include <boost/algorithm/string/join.hpp>
|
||||
#include <boost/algorithm/string/regex.hpp>
|
||||
#include <boost/regex.hpp>
|
Loading…
x
Reference in New Issue
Block a user