Skip to content

Commit 32615c8

Browse files
committed
Add vda68k tool by Frank Wille.
1 parent 31a6c50 commit 32615c8

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ Build process should produce following set of tools for **m68k-amigaos** target:
2121
* libm 5.4 (provides math library implementation for non-FPU Amigas)
2222
* AmigaOS headers & libraries & autodocs (for AmigaOS 3.9)
2323
* vbcc toolchain (most recent release) including vasm, vlink and C standard library
24-
* IRA: a 68k disassembler/reassembler
24+
* IRA: portable M68000/010/020/030/040 reassembler for AmigaOS hunk-format
25+
executables, libraries, devices and raw binary files
26+
* vda68k: portable M68k disassembler for 68000-68060, 68851, 68881, 68882
2527

2628
... and following set of tools for **ppc-amigaos** target:
2729

toolchain-m68k

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ URLS = \
3333
'http://sun.hasenbraten.de/vlink/release/vlink.tar.gz',
3434
'http://www.ibaug.de/vbcc/vbcc.tar.gz',
3535
'http://aminet.net/dev/asm/ira.lha',
36+
'http://sun.hasenbraten.de/~frank/projects/download/vdam68k.tar.gz',
3637
('http://mail.pb-owl.de/~frank/vbcc/current/vbcc_target_m68k-amigaos.lha',
3738
'vclib.lha')]
3839

@@ -95,6 +96,7 @@ def install_tools():
9596
info('installing extra tools')
9697

9798
copy('{build}/ira/ira', '{target}/bin')
99+
copy('{build}/vdam68k/vda68k', '{target}/bin')
98100

99101

100102
@recipe('{libamiga}-install')
@@ -462,6 +464,9 @@ def build():
462464
patch('ira', work_dir='{build}')
463465
make('ira')
464466

467+
unpack('vdam68k', top_dir='vda/M68k', work_dir='{build}')
468+
make('vdam68k')
469+
465470
install_tools()
466471

467472

0 commit comments

Comments
 (0)