factor/vm/cpu-x86.32.hpp

11 lines
175 B
C++
Raw Normal View History

2009-05-04 02:46:13 -04:00
namespace factor
{
2009-05-02 05:04:19 -04:00
#define FACTOR_CPU_STRING "x86.32"
2009-05-04 05:50:24 -04:00
register cell ds asm("esi");
register cell rs asm("edi");
2009-05-02 05:04:19 -04:00
#define VM_ASM_API VM_C_API __attribute__ ((regparm (3)))
2009-05-04 02:46:13 -04:00
}