2022-09-29 17:17:43 +00:00
|
|
|
#include "interrupts/Context.h"
|
|
|
|
#include "io/Serial.h"
|
2022-10-01 12:27:45 +00:00
|
|
|
#include "render/TextRenderer.h"
|
2022-09-29 17:17:43 +00:00
|
|
|
|
|
|
|
void sys_write(Context* context, const char* addr, size_t size)
|
|
|
|
{
|
|
|
|
context->rax = size;
|
2022-10-01 12:27:45 +00:00
|
|
|
TextRenderer::write(addr, size);
|
2022-09-29 17:17:43 +00:00
|
|
|
}
|