User:Freem/Scratchpad: Difference between revisions

From NeoGeo Development Wiki
Jump to navigation Jump to search
(saving WIP in case of freak accident)
 
m (working on a slight rewrite of the Hello world tutorial page. will add more later in the day)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
:''In order to avoid a situation like [[User:Freem/Homebrew]]; I'm going to be testing some things here. Everything is subject to change and/or deletion.''
:''In order to avoid a situation like the homebrew page formerly in my namespace, I'm going to be testing some things here. Everything is subject to change and/or deletion.''


=[[Development tools]] redesign=
=Hello World Tutorial=
==68000==
This tutorial will guide you through all the necessary steps to make a Neo-Geo binary which displays the text "Hello world!". The language we will be using is 68000 assembly, but good knowledge of it is not needed.
{|class="wikitable"
!colspan=6 style="background-color:#ccc"|Assemblers
|-
!Name !! Author(s) !! Description !! Platform(s) !! Notes !! Download
|-
| [http://john.ccac.rwth-aachen.de:8000/as/ AS] || Alfred Arnold, et al || Multi-target assembler || (multiple) || Provided as source code and binaries (Windows, DOS) ||  
|-
| [http://sun.hasenbraten.de/vasm/ vasm] || Volker Barthelmann, et al || Multi-target assembler || (multiple) || Provided as source code<br/>"official" binaries are for older versions || &nbsp;
|-
| JAS || Charles Doty, Paul Lee, Michael Hope || Modified version of AS || Windows || (base AS version unknown; binary is ca. 1999/12/30) || [[File:JAS.zip]]
|-
| Maccer || Michael Hope || Pre-processor for AS-series assemblers || &nbsp; || &nbsp; || &nbsp;
|-
| [http://gendev.spritesmind.net/page-macX.html MaccerX] || Kaneda || Updated version of Maccer || (multiple) || Provided as source code and binary (Windows); added support for XGCC (gcc) and comments || &nbsp;
|-
| SNASM68K || S.N. Systems || &nbsp; || Windows || &nbsp; || [http://segaretro.org/images/3/33/SNASM68K.7z SNASM68K 2.02Ex] (Modified by Nemesis)
|-
!colspan=6 style="background-color:#ccc"|Compilers
|-
!Name !! Author(s) !! Description !! Platform(s) !! Notes !! Download
|-
| NeoDev kit || Fabrice Martinez, Jeff Kurtz, et al || GCC compiler and library || &nbsp; || &nbsp; || [[File:NeoDev001.zip]]
|-
!colspan=6 style="background-color:#ccc"|Disassemblers
|-
!Name !! Author(s) !! Description !! Platform(s) !! Notes !! Download
|-
| IRA || Tim Ruehsen, ported by Antirad || Intelligent ReAssembler || &nbsp; || PC port of an Amiga app || [[File:Ira.zip]]
|}


==Z80==
==Setting up the Development Environment==
==Source Editors==
# Download [http://mamedev.org/release.html the latest version of MAME] and extract the contents somewhere you can easily remember (e.g. a directory like <code>C:\mame\</code> or <code>~/mame/</code>).
==Music==
# In order to run Neo-Geo software on MAME, you will need to create (or find) dumps of the various ROMs on the system motherboard. Typically these ROMs are packaged in a file called <code>neogeo.zip</code>. If you manage to find this zip file, copy it into the <code>roms</code> subdirectory of where you installed MAME. Otherwise, you will need a few files in the <code>roms/neogeo/</code> subdirectory: '''000-lo.lo''' (64KiB, the [[LO ROM]]), '''sm1.sm1''' (128KiB, the [[M1 ROM]] for sound), '''sp-s2.sp1''' (128KiB, the [[System ROM]]) and '''sfix.sfix''' (128KiB, the [[SFIX]] ROM).
==Graphics==
==Other Tools==

Latest revision as of 13:43, 22 January 2016

In order to avoid a situation like the homebrew page formerly in my namespace, I'm going to be testing some things here. Everything is subject to change and/or deletion.

Hello World Tutorial

This tutorial will guide you through all the necessary steps to make a Neo-Geo binary which displays the text "Hello world!". The language we will be using is 68000 assembly, but good knowledge of it is not needed.

Setting up the Development Environment

  1. Download the latest version of MAME and extract the contents somewhere you can easily remember (e.g. a directory like C:\mame\ or ~/mame/).
  2. In order to run Neo-Geo software on MAME, you will need to create (or find) dumps of the various ROMs on the system motherboard. Typically these ROMs are packaged in a file called neogeo.zip. If you manage to find this zip file, copy it into the roms subdirectory of where you installed MAME. Otherwise, you will need a few files in the roms/neogeo/ subdirectory: 000-lo.lo (64KiB, the LO ROM), sm1.sm1 (128KiB, the M1 ROM for sound), sp-s2.sp1 (128KiB, the System ROM) and sfix.sfix (128KiB, the SFIX ROM).