=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== openmsx-debugger-0.1~git20200913/src/DebuggerForm.cpp-496- openmsx-debugger-0.1~git20200913/src/DebuggerForm.cpp:497: // create the disasm viewer widget openmsx-debugger-0.1~git20200913/src/DebuggerForm.cpp-498- disasmView = new DisasmViewer(); ############################################## openmsx-debugger-0.1~git20200913/src/DebuggerForm.cpp-657- // added four bytes as runover buffer for dasm openmsx-debugger-0.1~git20200913/src/DebuggerForm.cpp:658: // otherwise dasm would need to check the buffer end continously. openmsx-debugger-0.1~git20200913/src/DebuggerForm.cpp-659- session.breakpoints().setMemoryLayout(&memLayout); ############################################## openmsx-debugger-0.1~git20200913/src/DisasmViewer.cpp-181- const DisasmRow* row; openmsx-debugger-0.1~git20200913/src/DisasmViewer.cpp:182: bool displayDisasm = memory != NULL && isEnabled(); openmsx-debugger-0.1~git20200913/src/DisasmViewer.cpp-183- ############################################## openmsx-debugger-0.1~git20200913/src/DisasmViewer.cpp-259- for (int j = 0; j < row->numBytes; ++j) { openmsx-debugger-0.1~git20200913/src/DisasmViewer.cpp:260: hexStr.sprintf("%02X", displayDisasm ? memory[row->addr + j] : 0); openmsx-debugger-0.1~git20200913/src/DisasmViewer.cpp-261- p.drawText(xMCode[j], y + a, hexStr); ############################################## openmsx-debugger-0.1~git20200913/src/DisasmViewer.cpp-349- openmsx-debugger-0.1~git20200913/src/DisasmViewer.cpp:350: // determine disasm bounds openmsx-debugger-0.1~git20200913/src/DisasmViewer.cpp-351- int disasmStart; ############################################## openmsx-debugger-0.1~git20200913/src/SymbolManager.cpp-124- types << "All supported files (*.sym *.map *.symbol *.publics *.sys)" openmsx-debugger-0.1~git20200913/src/SymbolManager.cpp:125: << "tniASM 0.x symbol files (*.sym)" openmsx-debugger-0.1~git20200913/src/SymbolManager.cpp:126: << "tniASM 1.x symbol files (*.sym)" openmsx-debugger-0.1~git20200913/src/SymbolManager.cpp-127- << "asMSX 0.x symbol files (*.sym)" ############################################## openmsx-debugger-0.1~git20200913/src/SymbolManager.cpp-141- bool read = false; openmsx-debugger-0.1~git20200913/src/SymbolManager.cpp:142: if (f.startsWith("tniASM 0")) { openmsx-debugger-0.1~git20200913/src/SymbolManager.cpp-143- read = symTable.readFile(n, SymbolTable::TNIASM0_FILE); openmsx-debugger-0.1~git20200913/src/SymbolManager.cpp:144: } else if (f.startsWith("tniASM 1")) { openmsx-debugger-0.1~git20200913/src/SymbolManager.cpp-145- read = symTable.readFile(n, SymbolTable::TNIASM1_FILE); ############################################## openmsx-debugger-0.1~git20200913/src/node.mk-15-SRC_HDR:= \ openmsx-debugger-0.1~git20200913/src/node.mk:16: DockManager Dasm DasmTables DebuggerData SymbolTable Convert Version \ openmsx-debugger-0.1~git20200913/src/node.mk-17- CPURegs SimpleHexRequest ############################################## openmsx-debugger-0.1~git20200913/src/SymbolTable.cpp-215- * manpage uses the extension ".sys" openmsx-debugger-0.1~git20200913/src/SymbolTable.cpp:216: * pasmo doc -> pasmo [options] file.asm file.bin [file.symbol [file.publics] ] openmsx-debugger-0.1~git20200913/src/SymbolTable.cpp:217: * pasmo manpage in Debian -> pasmo [options] file.asm file.bin [file.sys] openmsx-debugger-0.1~git20200913/src/SymbolTable.cpp-218- */