[OpenBIOS] [commit] r1291 - trunk/openbios-devel/forth/system

repository service svn at openbios.org
Mon May 12 17:43:42 CEST 2014


Author: mcayland
Date: Mon May 12 17:43:41 2014
New Revision: 1291
URL: http://tracker.coreboot.org/trac/openbios/changeset/1291

Log:
ciface.fs: implement milliseconds service

Now that all platforms have at least some implementation of get-msecs we can
just call it in order to implement the milliseconds service.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland at ilande.co.uk>

Modified:
   trunk/openbios-devel/forth/system/ciface.fs

Modified: trunk/openbios-devel/forth/system/ciface.fs
==============================================================================
--- trunk/openbios-devel/forth/system/ciface.fs	Mon May 12 17:43:38 2014	(r1290)
+++ trunk/openbios-devel/forth/system/ciface.fs	Mon May 12 17:43:41 2014	(r1291)
@@ -296,8 +296,9 @@
 \ 6.3.2.7 Time
 \ -------------------------------------------------------------
 
-\ : milliseconds ( -- ms ) ;
-
+: milliseconds ( -- ms )
+  get-msecs
+;
 
 \ -------------------------------------------------------------
 \ arch?



More information about the OpenBIOS mailing list