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 09:27:52 -04:00
|
|
|
cpu.x86.assembler cpu.x86.assembler.operands layouts vocabs parser ;
|
2008-11-07 21:33:32 -05:00
|
|
|
IN: bootstrap.x86
|
|
|
|
|
|
|
|
: stack-frame-size ( -- n ) 4 bootstrap-cells ;
|
2009-09-23 14:45:18 -04:00
|
|
|
: arg1 ( -- reg ) RDI ;
|
2009-08-19 14:02:12 -04:00
|
|
|
: arg2 ( -- reg ) RSI ;
|
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
|