mirror of
https://github.com/cmosher01/v6502cpp.git
synced 2026-04-19 12:26:01 +00:00
incorporate new transistor format file into code
This commit is contained in:
@@ -1,13 +1,16 @@
|
||||
#ifndef CPU_H
|
||||
#define CPU_H
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <set>
|
||||
#include <map>
|
||||
|
||||
class AddressBus;
|
||||
|
||||
class seg {
|
||||
public:
|
||||
std::string id;
|
||||
bool pullup;
|
||||
bool pulldown;
|
||||
bool on;
|
||||
@@ -25,6 +28,7 @@ public:
|
||||
|
||||
class CPU {
|
||||
private:
|
||||
std::map<std::string,int> map_seg_i;
|
||||
std::vector<seg> segs;
|
||||
std::vector<trn> trns;
|
||||
AddressBus& addressBus;
|
||||
|
||||
Reference in New Issue
Block a user