1995-10-31 17:04:59 -05:00
|
|
|
;;; Endian routines for the Scheme Shell
|
|
|
|
;;; Copyright (c) 1995 by Brian D. Carlstrom.
|
|
|
|
|
|
|
|
;; Big Endian - Motorola, Sparc, HPPA, etc
|
|
|
|
(define (net-to-host-32-big num32)
|
|
|
|
(and (<= 0 num32 #xffffffff)
|
|
|
|
num32))
|
|
|
|
|
|
|
|
(define (net-to-host-16-big num16)
|
|
|
|
(and (<= 0 num16 #xffffffff)
|
|
|
|
num16))
|
|
|
|
|
|
|
|
;; Little Endian - Intel, Vax, Alpha
|
|
|
|
(define (net-to-host-32-little num32)
|
|
|
|
(and (<= 0 num32 #xffffffff)
|
|
|
|
(let* ((num24 (arithmetic-shift num32 -8))
|
|
|
|
(num16 (arithmetic-shift num24 -8))
|
|
|
|
(num08 (arithmetic-shift num16 -8))
|
|
|
|
(byte0 (bitwise-and #b11111111 num08))
|
|
|
|
(byte1 (bitwise-and #b11111111 num16))
|
|
|
|
(byte2 (bitwise-and #b11111111 num24))
|
|
|
|
(byte3 (bitwise-and #b11111111 num32)))
|
|
|
|
(+ (arithmetic-shift byte3 24)
|
1995-10-31 18:41:17 -05:00
|
|
|
(arithmetic-shift byte2 16)
|
|
|
|
(arithmetic-shift byte1 8)
|
|
|
|
byte0))))
|
1995-10-31 17:04:59 -05:00
|
|
|
|
|
|
|
(define (net-to-host-16-little num16)
|
|
|
|
(and (<= 0 num16 #xffffffff)
|
|
|
|
(let* ((num08 (arithmetic-shift num16 -8))
|
|
|
|
(byte0 (bitwise-and #b11111111 num08))
|
1995-10-31 18:41:17 -05:00
|
|
|
(byte1 (bitwise-and #b11111111 num16)))
|
1995-10-31 17:04:59 -05:00
|
|
|
(+ (arithmetic-shift byte1 8)
|
|
|
|
byte0))))
|
|
|
|
|
|
|
|
(define net-to-host-32 net-to-host-32-@ENDIAN@)
|
|
|
|
(define net-to-host-16 net-to-host-16-@ENDIAN@)
|
1995-10-31 18:29:37 -05:00
|
|
|
(define host-to-net-32 net-to-host-32-@ENDIAN@)
|
|
|
|
(define host-to-net-16 net-to-host-16-@ENDIAN@)
|