added "jal" command

This commit is contained in:
black
2025-07-08 16:38:56 +02:00
parent 7ccd543751
commit f9bd85695a
6 changed files with 32 additions and 2 deletions

View File

@@ -40,6 +40,10 @@ void Manager::setStreamPosition(const std::streampos pos) {
m_programFile.seekg(pos);
}
std::streampos Manager::getStreamPosition() {
return m_programFile.tellg();
}
void Manager::init(const std::string &program_path) {
m_path = program_path;
std::cout << "Öffne Quellcode Datei: '" << m_path << "'" << "\n" << std::flush;