mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-22 09:30:32 +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,9 +2,9 @@
|
||||
#include "Profiler.h"
|
||||
|
||||
EightBit::Profiler::Profiler(MOS6502& targetProcessor, Disassembly& disassemblerTarget, Symbols& symbolsTarget)
|
||||
: processor(targetProcessor),
|
||||
disassembler(disassemblerTarget),
|
||||
symbols(symbolsTarget) {
|
||||
: processor(targetProcessor),
|
||||
disassembler(disassemblerTarget),
|
||||
symbols(symbolsTarget) {
|
||||
|
||||
instructionCounts.fill(0);
|
||||
addressProfiles.fill(0);
|
||||
|
@ -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…
Reference in New Issue
Block a user