diff options
author | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2014-05-12 15:43:41 +0000 |
---|---|---|
committer | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2014-05-12 15:43:41 +0000 |
commit | 6424328bd4c58e07da3e377f44ec0177e8bcbf6d (patch) | |
tree | c198255501812d0356bbaf89623ebf1ba9e2dbf5 /forth/system | |
parent | 67cba5146d34332b4481ca13c029f98513bf2604 (diff) | |
download | openbios-6424328bd4c58e07da3e377f44ec0177e8bcbf6d.zip openbios-6424328bd4c58e07da3e377f44ec0177e8bcbf6d.tar.gz openbios-6424328bd4c58e07da3e377f44ec0177e8bcbf6d.tar.bz2 |
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@ilande.co.uk>
git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@1291 f158a5a8-5612-0410-a976-696ce0be7e32
Diffstat (limited to 'forth/system')
-rw-r--r-- | forth/system/ciface.fs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/forth/system/ciface.fs b/forth/system/ciface.fs index 727f0a3..1a2f5ee 100644 --- a/forth/system/ciface.fs +++ b/forth/system/ciface.fs @@ -296,8 +296,9 @@ external \ 6.3.2.7 Time \ ------------------------------------------------------------- -\ : milliseconds ( -- ms ) ; - +: milliseconds ( -- ms ) + get-msecs +; \ ------------------------------------------------------------- \ arch? |