888bc5abdd
Moved handlers to syscalls/, implemented libterm (malloc, stdio)
12 lines
225 B
C
12 lines
225 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// Copyright (c) 2026 0xKarinyash
|
|
|
|
#include <process.h>
|
|
#include <stdio.h>
|
|
#include <malloc.h>
|
|
|
|
int main() {
|
|
printf("Launching debug\n");
|
|
spawn("debug");
|
|
while (1) {}
|
|
} |