summaryrefslogtreecommitdiffhomepage
path: root/Sources
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-16 07:40:46 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-16 07:41:26 +0200
commita656cb178c384bcb27b22fdc7ce1e10e49e8e5bd (patch)
tree6359f393cf9eccea2a8ca6cf23fd367c6456764a /Sources
parent90a28d26fd6037069495744a3a6a263ed1bede99 (diff)
meta: Add TODO.txt to keep track of what is needed.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Sources')
-rw-r--r--Sources/bpp.cc1
-rw-r--r--Sources/ppc-cc.cc2
2 files changed, 2 insertions, 1 deletions
diff --git a/Sources/bpp.cc b/Sources/bpp.cc
index 1bc235c..1e15366 100644
--- a/Sources/bpp.cc
+++ b/Sources/bpp.cc
@@ -253,6 +253,7 @@ void bpp_parse_file(std::ifstream &hdr_file, std::ofstream &pp_out) {
try {
while (std::getline(hdr_file, hdr_line)) {
+ /// BPP Documentation.
if (hdr_line.find("@bdoc") != std::string::npos) {
hdr_line.erase(hdr_line.find("@bdoc"));
}
diff --git a/Sources/ppc-cc.cc b/Sources/ppc-cc.cc
index dc40383..4e2f162 100644
--- a/Sources/ppc-cc.cc
+++ b/Sources/ppc-cc.cc
@@ -8,7 +8,7 @@
*/
/// BUGS: 0
-/// TODO:
+/// TODO: Structs and enums.
#include <Headers/AsmKit/CPU/ppc.hpp>
#include <Headers/ParserKit.hpp>