factor/basis/cpu/x86/64/64-docs.factor

14 lines
398 B
Factor
Raw Normal View History

2014-05-11 07:12:56 -04:00
USING: help.markup help.syntax math vm ;
2014-05-04 19:38:43 -04:00
IN: cpu.x86.64
HELP: vm-reg
{ $values { "reg" "a register symbol" } }
2014-05-04 19:38:43 -04:00
{ $description
"Symbol of the machine register that holds the address of the virtual machine."
2014-05-11 07:12:56 -04:00
}
{ $see-also vm } ;
2014-05-04 19:38:43 -04:00
HELP: param-reg
{ $values { "n" number } { "reg" "a register symbol" } }
{ $description "Symbol of the machine register for the nth function parameter (0-based)." } ;