Difference between revisions of "Commodore Amiga"

From SizeCoding
Jump to: navigation, search
(Created page with "== Commodore Amiga == The Commodore Amiga system consists of the M68k system with custom hardware for graphics and sound. === Setting up === * Assembler: - * Emulator(s): Li...")
 
(Setting up)
(3 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
=== Setting up ===
 
=== Setting up ===
  
* Assembler: -
+
* Assembler: VASM
 
* Emulator(s): Linux: fs-uae, Windows: WinUAE
 
* Emulator(s): Linux: fs-uae, Windows: WinUAE
 +
 +
Compile source to Amiga Kickstart1.x executable:
 +
 +
<syntaxhighlight lang="">
 +
vasm -kick1hunks -Fhunkexe -o example -nosym
 +
</syntaxhighlight>
  
 
=== Video display ===
 
=== Video display ===
Line 14: Line 20:
  
 
=== Additional Resources ===
 
=== Additional Resources ===
* Amucoders https://amycoders.org/
+
* [https://amycoders.org/ AmyCoders]
 
* [https://archive.org/details/Amiga_Hardware_Reference_Manual_1985_Commodore Amiga Harware Reference Manual from Commodore (scans on Archive.org)]
 
* [https://archive.org/details/Amiga_Hardware_Reference_Manual_1985_Commodore Amiga Harware Reference Manual from Commodore (scans on Archive.org)]
* [http://amigadev.elowar.com/read/ADCD_2.1/Hardware_Manual_guide/node0000.html HTML version on elowar.com]
+
* [http://amigadev.elowar.com/read/ADCD_2.1/Hardware_Manual_guide/node0000.html Hardware Manual Guide]
 
* [https://www.markwrobel.dk/project/amigamachinecode/ Learning Amiga machine code]
 
* [https://www.markwrobel.dk/project/amigamachinecode/ Learning Amiga machine code]

Revision as of 06:12, 20 June 2022

Commodore Amiga

The Commodore Amiga system consists of the M68k system with custom hardware for graphics and sound.

Setting up

  • Assembler: VASM
  • Emulator(s): Linux: fs-uae, Windows: WinUAE

Compile source to Amiga Kickstart1.x executable:

vasm -kick1hunks -Fhunkexe -o example -nosym

Video display

No information yet

Sound

No information yet

Additional Resources