1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/*
* Phony versions of native-code helper routines for use on architectures for
* which we have no native code.
*/
long
s48_call_native_procedure(long procedure, long arg_count)
{
return 3; /* indicates failure; see scheme/vm/interp/call.scm */
}
long
s48_invoke_native_continuation(long code_pointer, long protocol_skip)
{
return 3; /* indicates failure; see scheme/vm/interp/call.scm */
}
long
s48_jump_to_native_address(long address, long template)
{
return 3; /* indicates failure; see scheme/vm/interp/call.scm */
}
void
s48_init_asm_glue(void)
{
}
|