repo.or.cz
/
hdt-cyring.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
In the current Lua.c32 DMI implementation, it is a flat table with dotted names in...
[hdt-cyring.git]
/
core
/
kaboom.c
blob
d639915a6bf96b51aa03b59309d0017bc3e48850
1
/*
2
* kaboom.c
3
*/
4
5
#include
"core.h"
6
7
#undef kaboom
8
9
__noreturn
_kaboom
(
void
)
10
{
11
extern
void
kaboom
(
void
);
12
call16
(
kaboom
, &
zero_regs
,
NULL
);
13
/* Do this if kaboom somehow returns... */
14
for
(;;)
15
asm
volatile
(
"hlt"
);
16
}