Next: , Previous: , Up: Sample usage   [Contents]


2.4 アセンブルと実行を別に行う

casl2-Oファイル名を指定すると、オブジェクトファイルを作成できます。

$ casl2 -Ohello.o hello.casl

作成されたオブジェクトファイルの内容は、odを使って確認できます。 テキストファイルではないため、catなどでは確認できません。

$ od -t x2 hello.o
0000000 7001 0000 7002 0000 1210 0013 1220 0020
0000020 f000 0002 1210 0021 1220 0022 f000 0002
0000040 7120 7110 8100 0048 0065 006c 006c 006f
0000060 002c 0020 0057 006f 0072 006c 0064 0021
0000100 000d 000a 0001
0000106

オブジェクトファイルの実行には、comet2を使います。

$ comet2 hello.o
Hello, World!