casl2libフォルダを整理
[YACASL2.git] / test / system / casl2 / hello / 0.txt
1 MAIN    START
2         OUT     OBUF,LEN
3         RET
4 OBUF    DC      'Hello, World!'
5 LEN     DC      13
6         END
7
8 Assemble ../../../../as/hello.casl (0)
9 ../../../../as/hello.casl:    1:MAIN    START
10 ../../../../as/hello.casl:    2:        OUT     OBUF,LEN
11 ../../../../as/hello.casl:    3:        RET
12 ../../../../as/hello.casl:    4:OBUF    DC      'Hello, World!'
13 ../../../../as/hello.casl:    5:LEN     DC      13
14 ../../../../as/hello.casl:    6:        END
15
16 Label::::
17 MAIN ---> #0000
18 MAIN.OBUF ---> #0013
19 MAIN.LEN ---> #0020
20
21 Assemble ../../../../as/hello.casl (1)
22 ../../../../as/hello.casl:    1:MAIN    START
23 ../../../../as/hello.casl:    2:        OUT     OBUF,LEN
24         #0000   #7001
25         #0001   #0000
26         #0002   #7002
27         #0003   #0000
28         #0004   #1210
29         #0005   #0013
30         #0006   #1220
31         #0007   #0020
32         #0008   #F000
33         #0009   #0002
34         #0021   #000A
35         #000A   #1210
36         #000B   #0021
37         #0022   #0001
38         #000C   #1220
39         #000D   #0022
40         #000E   #F000
41         #000F   #0002
42         #0010   #7120
43         #0011   #7110
44 ../../../../as/hello.casl:    3:        RET
45         #0012   #8100
46 ../../../../as/hello.casl:    4:OBUF    DC      'Hello, World!'
47         #0013   #0048
48         #0014   #0065
49         #0015   #006C
50         #0016   #006C
51         #0017   #006F
52         #0018   #002C
53         #0019   #0020
54         #001A   #0057
55         #001B   #006F
56         #001C   #0072
57         #001D   #006C
58         #001E   #0064
59         #001F   #0021
60 ../../../../as/hello.casl:    5:LEN     DC      13
61         #0020   #000D
62 ../../../../as/hello.casl:    6:        END
63 Hello, World!