Adding a base class for a QT window

This commit is contained in:
Anonymus Raccoon
2020-02-16 16:53:18 +01:00
parent 6ff4de3e0b
commit c16ce36105
24 changed files with 159 additions and 74 deletions
+2 -2
View File
@@ -84,9 +84,9 @@ namespace ComSquare::CPU
bool i : 1;
//! @brief The Decimal mode flag
bool d : 1;
//! @brief The indeX register width flag (in native mode only) OR the Break flag (in emulation mode only)
//! @brief The indeX register _width flag (in native mode only) OR the Break flag (in emulation mode only)
bool x_b : 1;
//! @brief The accumulator and Memory width flag (in native mode only)
//! @brief The accumulator and Memory _width flag (in native mode only)
bool m : 1;
//! @brief The oVerflow flag
bool v : 1;