blob: c4a0416d8f88c6d3ea7c0e618d41d63f62bb913e (
plain) (
blame)
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
|
--- test/testit.orig 2025-03-25 02:20:05 UTC
+++ test/testit
@@ -1,8 +1,8 @@
-#!/bin/bash
+#!/bin/sh
# this tests the various assemblers' instruction lists by
# comparing with pre-assembled .hex files in the ref sub-directory
-function testit()
+testit()
{
echo -n "Testing $1:"
@@ -37,17 +37,17 @@ testit 68hcs08
testit 68hc11
testit 68hc16
testit 68hcs08
-#testit 68k # already tested by 68000 / 68010
+testit 68k # already tested by 68000 / 68010
testit 8048
testit 8051
-#testit 8085 # already tested by 8085u
+testit 8085 # already tested by 8085u
testit 8085u
testit 8008
-#testit arm
+testit arm
testit f8
testit gbz80
testit jerry
-#testit thumb
+testit thumb
testit tom
testit z80
testit z8
|