-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path:w
More file actions
108 lines (84 loc) · 1.41 KB
/
:w
File metadata and controls
108 lines (84 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package util
import (
"fmt"
"strconv"
)
const (
HIGH_BITS = 0
LOW_BITS = 1
)
func DecimalToBinary(value int) [8]byte {
ba := [8]byte{}
bs := strconv.FormatUint(uint64(value), 2)
if len([]rune(bs)) < 8 {
for i := len([]rune(bs)); i < 8; i++ {
bs = "0" + bs
}
}
count := 7;
for i := len([]rune(bs)); i>=0; i-- {
if(count == -1){
break
}
if bs[count] == '0' {
ba[count] = 0
} else {
ba[count] = 1
}
count--
}
return ba
}
func DecimalToBinary16(value int) ([8]byte, [8]byte) {
hbits := [8]byte{}
lbits := [8]byte{}
bs := strconv.FormatUint(uint64(value), 2)
if len([]rune(bs)) < 16 {
for i := len([]rune(bs)); i < 8; i++ {
bs = "0" + bs
}
}
for i, c := range bs {
if c == '0' {
if i < 8 {
hbits[i] = 0
} else {
lbits[i-1] = 0
}
} else {
if i < 8 {
hbits[i] = 1
} else {
lbits[i-8] = 1
}
}
}
return hbits, lbits
}
func BinaryToDecimal(value []byte) int {
sum := int(0)
for _, x := range value {
sum = (sum * 2) + int(x)
}
return sum
}
func BinaryToHex(value [8]byte) (string, error) {
sb := ""
startAt := false
for _, b := range value {
if b == 1 {
startAt = true
}
if startAt {
sb = strconv.Itoa(int(b)) + sb
}
}
ui, err := strconv.ParseUint(sb, 2, 64)
if err != nil {
return "", err
}
return fmt.Sprintf("%x", ui), nil
}
func dToH(value uint64) string {
return fmt.Sprintf("%x", value)
}