Public Access
1
0

First split

This commit is contained in:
2025-09-25 14:18:22 +03:00
parent d85961bea5
commit 34f1254a85
17 changed files with 11805 additions and 1 deletions

15
empty_test.go Normal file
View File

@@ -0,0 +1,15 @@
// Package disasm provides tests for the Z80 disassembler implementation
package disasm
import (
"testing"
)
// TestEmptyData tests handling of empty data
func TestEmptyData(t *testing.T) {
d := New()
_, err := d.Decode([]byte{})
if err == nil {
t.Errorf("expected error for empty data but got none")
}
}