Kaynağa Gözat

initial commit

Keelan Lightfoot 1 yıl önce
işleme
9db248ab48
3 değiştirilmiş dosya ile 2925 ekleme ve 0 silme
  1. 2902
    0
      68kdisasm.go
  2. 20
    0
      README.md
  3. 3
    0
      go.mod

+ 2902
- 0
68kdisasm.go
Dosya farkı çok büyük olduğundan ihmal edildi
Dosyayı Görüntüle


+ 20
- 0
README.md Dosyayı Görüntüle

@@ -0,0 +1,20 @@
1
+# 68kdasm
2
+
3
+A 68k disassembler, originally extracted from  Jens Kaiser's go2m68k project:
4
+
5
+https://github.com/jenska/go2m68k/
6
+
7
+But since then, that project has removed the original disassembler code. That code appears to have been a go port of the C disassembler code from Karl Stenerud's Musashi 68k emulator:
8
+
9
+https://github.com/kstenerud/Musashi/blob/master/m68kdasm.c
10
+
11
+# License
12
+
13
+Distributed under the MIT License. See LICENSE.txt for more information.
14
+
15
+# Contact
16
+
17
+Keelan Lightfoot - http://beefchicken.com/contact/
18
+
19
+Project Link: http://code.beefchicken.com/keelan/68kdisasm
20
+

+ 3
- 0
go.mod Dosyayı Görüntüle

@@ -0,0 +1,3 @@
1
+module code.beefchicken.com/keelan/68kdisasm
2
+
3
+go 1.20