blob: b9be862336ac7e291aca9670aabedc8b9aa3ce35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* -------------------------------------------
Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
#include <LibCompiler/Defines.h>
/// @file dbg.cxx
/// @brief NE debugger.
LC_IMPORT_C int DebuggerMachPOSIX(int argc, char const* argv[]);
/// @brief Debugger entrypoint.
/// @return Status code of debugger.
int main(int argc, char const* argv[]) {
return DebuggerMachPOSIX(argc, argv);
}
|