aboutsummaryrefslogtreecommitdiff
path: root/board-qemu/slof/fdt.fs
diff options
context:
space:
mode:
authorNikunj A Dadhania <nikunj@linux.vnet.ibm.com>2013-08-16 13:48:24 +0530
committerNikunj A Dadhania <nikunj@linux.vnet.ibm.com>2013-08-21 10:49:58 +0530
commit85b0956ddb46c1461c32505f7ebedd44a1fed4c7 (patch)
tree7a8e3f783f0ce2f4ba7c5f4b0f5e65b2a012fe67 /board-qemu/slof/fdt.fs
parent5a75cd882e352d033e582a35160198153d842347 (diff)
downloadSLOF-85b0956ddb46c1461c32505f7ebedd44a1fed4c7.zip
SLOF-85b0956ddb46c1461c32505f7ebedd44a1fed4c7.tar.gz
SLOF-85b0956ddb46c1461c32505f7ebedd44a1fed4c7.tar.bz2
Move hex64-{decode,encode}-unit to node.fs
Signed-off-by: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com>
Diffstat (limited to 'board-qemu/slof/fdt.fs')
-rw-r--r--board-qemu/slof/fdt.fs22
1 files changed, 0 insertions, 22 deletions
diff --git a/board-qemu/slof/fdt.fs b/board-qemu/slof/fdt.fs
index 497f416..c67c3c9 100644
--- a/board-qemu/slof/fdt.fs
+++ b/board-qemu/slof/fdt.fs
@@ -107,28 +107,6 @@ fdt-check-header
fdt-strings + dup from-cstring
;
-: hex64-decode-unit ( str len ncells -- addr.lo ... addr.hi )
- dup 2 <> IF
- hex-decode-unit
- ELSE
- drop
- base @ >r hex
- $number IF 0 0 ELSE xlsplit THEN
- r> base !
- THEN
-;
-
-: hex64-encode-unit ( addr.lo ... addr.hi ncells -- str len )
- dup 2 <> IF
- hex-encode-unit
- ELSE
- drop
- base @ >r hex
- lxjoin (u.)
- r> base !
- THEN
-;
-
: fdt-create-dec s" decode-unit" $CREATE , DOES> @ hex64-decode-unit ;
: fdt-create-enc s" encode-unit" $CREATE , DOES> @ hex64-encode-unit ;