XiPU uROM Generator
urom.h
Go to the documentation of this file.
1 /*
2  * Author: Pawel Jablonski
3  * E-mail: pj@xirx.net
4  * WWW: xirx.net
5  * GIT: git.xirx.net
6  *
7  * License: You can use this code however you like
8  * but leave information about the original author.
9  * Code is free for non-commercial and commercial use.
10  */
11 
12 #ifndef UROM_H
13 #define UROM_H
14 
15 #include "step.h"
16 #include "instruction.h"
17 #include "uromdata.h"
18 
19 //! This class contains an uROM data
20 class URom
21 {
22  public:
23  URom();
24 
25  bool saveFiles(const QString &urom0Path, const QString &urom1Path);
26 
27  private:
28  URomData uRomData; //!< uROM data with an opcode table
29 };
30 
31 #endif
This class contains a whole generated microcode for all instructions.
Definition: uromdata.h:23
This class contains an uROM data.
Definition: urom.h:21
URomData uRomData
uROM data with an opcode table
Definition: urom.h:28
URom()
Default constructor for creating an uROM. Generating a full instrution set.
Definition: urom.cpp:15
bool saveFiles(const QString &urom0Path, const QString &urom1Path)
Definition: urom.cpp:889