j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Signed-of-by: John Arbuckle programmingkidx@gmail.com
--- forth/system/main.fs | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/forth/system/main.fs b/forth/system/main.fs index 122ab1f..09c08d3 100644 --- a/forth/system/main.fs +++ b/forth/system/main.fs @@ -58,3 +58,10 @@ variable DIAG-list
outer-interpreter ; + + +\ Returns the time ( -- second minute hour day month year ) +: get-time ( -- ) + s" rtc" s" get-time" execute-device-method + 0= ABORT" Sorry but the rtc node was not found" +; \ No newline at end of file