acadia/lib/mammoth/include/mammoth/debug.h
Drew Galbraith 23895b5c6c Spawn Processes using memory primitives rather than and elf loader.
This allows us to remove the temporary syscall for that style of process
spawn.
2023-06-07 00:04:53 -07:00

9 lines
143 B
C

#pragma once
#include <stdint.h>
void dbgln(const char*);
// Checks that the code is ok.
// if not exits the process.
void check(uint64_t);