cpu.x86.features-docs: add some help on instruction-count

factor-shell
Alexander Iljin 2017-08-26 01:34:26 +03:00 committed by John Benediktsson
parent 5a627505ef
commit d16cf66810
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
! Copyright (C) 2017 Alexander Ilin.
! See http://factorcode.org/license.txt for BSD license.
USING: help.markup help.syntax kernel math quotations strings ;
IN: cpu.x86.features
HELP: instruction-count
{ $values
{ "n" number }
}
{ $description "The word returns the CPU's Timestamp Counter: " { $url "http://en.wikipedia.org/wiki/Time_Stamp_Counter" } "." } ;
ARTICLE: "cpu.x86.features" "cpu.x86.features"
{ $vocab-link "cpu.x86.features" }
;
ABOUT: "cpu.x86.features"