diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-22 08:25:35 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-22 08:26:57 +0200 |
| commit | 96ea259e3e3a3b1be7d0e3b589063340fc48cd2e (patch) | |
| tree | eee3788889ee7c9f7e5d538604920acef05a8bba /dev/LibCompiler/AssemblyInterface.h | |
| parent | 385178a1ecb41a7a529d219d80e2ed1232831abd (diff) | |
feat(LibCompiler): Update AssemblyInterface's Arch method.
also:
- Figured out the segfault, currently working on a patch.
- Better CLI output, with each library having it's prefix.
- LibCompiler: `drv`
- LibDebugger: `dbg`
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler/AssemblyInterface.h')
| -rw-r--r-- | dev/LibCompiler/AssemblyInterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/LibCompiler/AssemblyInterface.h b/dev/LibCompiler/AssemblyInterface.h index b612962..81440ce 100644 --- a/dev/LibCompiler/AssemblyInterface.h +++ b/dev/LibCompiler/AssemblyInterface.h @@ -54,7 +54,7 @@ class AssemblyInterface { LIBCOMPILER_COPY_DEFAULT(AssemblyInterface); - [[maybe_unused]] virtual Int32 Arch() noexcept { return AssemblyFactory::kArchAMD64; } + virtual UInt32 Arch() noexcept { return AssemblyFactory::kArchAMD64; } /// @brief compile to object file. /// @note Example C++ -> MASM -> AE object. |
