8 lines
209 B
C++
8 lines
209 B
C++
|
#include "config.h"
|
||
|
#include "interrupts/Context.h"
|
||
|
#include "std/stdio.h"
|
||
|
|
||
|
void sys_version(Context* context, char* buffer, size_t max)
|
||
|
{
|
||
|
context->rax = snprintf(buffer, max, "moon %s", moon_version());
|
||
|
}
|