2008-11-07 21:33:32 -05:00
|
|
|
! Copyright (C) 2008 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: bootstrap.image.private kernel namespaces system
|
2009-07-30 03:22:37 -04:00
|
|
|
layouts vocabs parser cpu.x86.assembler
|
|
|
|
cpu.x86.assembler.operands ;
|
2008-11-07 21:33:32 -05:00
|
|
|
IN: bootstrap.x86
|
|
|
|
|
|
|
|
: stack-frame-size ( -- n ) 8 bootstrap-cells ;
|
2009-09-23 14:45:18 -04:00
|
|
|
: arg1 ( -- reg ) RCX ;
|
2009-08-19 14:02:12 -04:00
|
|
|
: arg2 ( -- reg ) RDX ;
|
2008-11-07 21:33:32 -05:00
|
|
|
|
2009-02-15 20:53:21 -05:00
|
|
|
<< "vocab:cpu/x86/64/bootstrap.factor" parse-file parsed >>
|
2008-11-07 21:33:32 -05:00
|
|
|
call
|