retroforth/example/detect-devices.retro
crc 2e95ec501a update more examples to use new word names
FossilOrigin-Name: 708314f58b4253b273c217a11265725bad4c8d7d7c53c503510440dade50be4d
2020-07-06 02:49:49 +00:00

22 lines
649 B
Text

This will iterate over the attached devices, displaying a short
description of each.
~~~
:id
#0 [ 'generic-output s:put nl ] case
#1 [ 'generic-input s:put nl ] case
#2 [ 'floating-point s:put nl ] case
#3 [ 'block-store s:put nl ] case
#4 [ 'filesystem s:put nl ] case
#5 [ 'reserved s:put nl ] case
#6 [ 'reserved s:put nl ] case
#7 [ 'sockets s:put nl ] case
#8 [ 'unix-syscalls s:put nl ] case
#9 [ 'scripting s:put nl ] case
#1000 [ 'saving-image s:put nl ] case
'unknown:_ s:put n:put nl ;
'Detecting_devices... s:put nl
io:enumerate [ $# c:put I dup n:put io:query nip tab id ] indexed-times
'Complete. s:put nl
~~~