factor/basis/cpu/x86/64/unix/bootstrap.factor

12 lines
346 B
Factor
Raw Normal View History

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
cpu.x86.assembler layouts vocabs parser ;
IN: bootstrap.x86
: stack-frame-size ( -- n ) 4 bootstrap-cells ;
2008-12-10 02:19:22 -05:00
: arg ( -- reg ) RDI ;
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