12 lines
174 B
HolyC
12 lines
174 B
HolyC
Bool @input_key_down(I64 sc)
|
|
{
|
|
return Bt(kbd.down_bitmap, sc);
|
|
}
|
|
|
|
U0 input_key_down()
|
|
{
|
|
PUSH_SYSV_REGS
|
|
GET_SYSV_ARGS
|
|
@input_key_down(p0);
|
|
POP_SYSV_REGS
|
|
}
|