mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 20:20:55 +11:00
9 lines
180 B
Plaintext
9 lines
180 B
Plaintext
|
( returns negative value on error )
|
||
|
: _ ( c -- n )
|
||
|
DUP '0' '9' =><= IF '0' - EXIT THEN
|
||
|
DUP 'a' 'f' =><= IF 0x57 ( 'a' - 10 ) - EXIT THEN
|
||
|
DROP -1 ( bad )
|
||
|
;
|
||
|
|
||
|
|