blob: 268e4b28fff54393c89e8cc947688f0322ffa09d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
%ifndef _BUILTINS_ASM
%define _BUILTINS_ASM
%include "builtin_reboot.asm"
%include "builtin_exit.asm"
%include "builtin_echo.asm"
t_builtins_fn:
dw builtin_echo
dw builtin_exit
dw builtin_reboot
dw 0
t_builtins_str:
.echo: db 'echo', 0
.exit: db 'exit', 0
.reboot: db 'reboot', 0
dw 0
%endif
|