|
@@ -109,9 +109,9 @@ func PrintDisassembled(code string) error {
|
|
|
it := NewInstructionIterator(script)
|
|
it := NewInstructionIterator(script)
|
|
|
for it.Next() {
|
|
for it.Next() {
|
|
|
if it.Arg() != nil && 0 < len(it.Arg()) {
|
|
if it.Arg() != nil && 0 < len(it.Arg()) {
|
|
|
- fmt.Printf("%06v: %v 0x%x\n", it.PC(), it.Op(), it.Arg())
|
|
|
|
|
|
|
+ fmt.Printf("%05x: %v 0x%x\n", it.PC(), it.Op(), it.Arg())
|
|
|
} else {
|
|
} else {
|
|
|
- fmt.Printf("%06v: %v\n", it.PC(), it.Op())
|
|
|
|
|
|
|
+ fmt.Printf("%05x: %v\n", it.PC(), it.Op())
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
return it.Error()
|
|
return it.Error()
|
|
@@ -124,9 +124,9 @@ func Disassemble(script []byte) ([]string, error) {
|
|
|
it := NewInstructionIterator(script)
|
|
it := NewInstructionIterator(script)
|
|
|
for it.Next() {
|
|
for it.Next() {
|
|
|
if it.Arg() != nil && 0 < len(it.Arg()) {
|
|
if it.Arg() != nil && 0 < len(it.Arg()) {
|
|
|
- instrs = append(instrs, fmt.Sprintf("%06v: %v 0x%x\n", it.PC(), it.Op(), it.Arg()))
|
|
|
|
|
|
|
+ instrs = append(instrs, fmt.Sprintf("%05x: %v 0x%x\n", it.PC(), it.Op(), it.Arg()))
|
|
|
} else {
|
|
} else {
|
|
|
- instrs = append(instrs, fmt.Sprintf("%06v: %v\n", it.PC(), it.Op()))
|
|
|
|
|
|
|
+ instrs = append(instrs, fmt.Sprintf("%05x: %v\n", it.PC(), it.Op()))
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
if err := it.Error(); err != nil {
|
|
if err := it.Error(); err != nil {
|