LoginSignup
0
0

More than 1 year has passed since last update.

CommodoreエミュレータVICEをUbuntu 22.10でソースコードからビルドして動かす

Posted at

CommodoreエミュレータVICEをUbuntu 22.10でソースコードからビルドして動かします。

コンパイル

  1. ソースコードの入手
    https://sourceforge.net/projects/vice-emu/files/releases/
  2. 解凍
    tar.gzをお好みで
  3. 必要なパッケージをaptで
    $ sudo apt install flex bison autogen automake texinfo dos2unix xa65 libglew-dev libsdl2-dev
  4. configure
    手順1.で解凍したディレクトリに入り、PDFドキュメントは別段いらないので、
    $ ./confirgure --disable-pdf-docs
  5. make // 少し時間がかかります
    $ make
  6. sudo make install
    $ sudo make install

実行方法

$ less README
冒頭に、インストールされるエミュレータの種類と実行ファイル名が記載されています。

The following programs are included:
   - x64sc, a C64 emulator focused on accuracy;
   - xscpu64, a C64 emulator with a SuperCPU cart;
   - x64dtv, a C64 Direct-to-TV (DTV) emulator;
   - x128, a C128 emulator;
   - xvic, a VIC20 emulator;
   - xpet, a PET emulator;
   - xplus4, a PLUS4 emulator;
   - xcbm2, a CBM-6x0/7x0 emulator;
   - xcbm5x0, a CBM-5x0 emulator;
   - vsid, a SID player;
   - c1541, a stand-alone disk image maintenance utility;
   - petcat, a CBM BASIC de-tokenizer;
   - cartconv, a C64/C128 cartridge conversion program.

この中から、例えば、
$ x128
image.png

今回参考にしたサイト

謝辞 // 開発者のみなさまへ

ありがとうございます! 感動的です(^^) 以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0