2008-01-01 00:52:53 +01:00
|
|
|
z80sim README
|
|
|
|
^^^^^^^^^^^^^
|
2007-12-29 02:05:26 +01:00
|
|
|
|
2008-01-01 00:52:53 +01:00
|
|
|
This port uses a primitive, emulated Z80 and the SDCC toolchain.
|
2011-02-14 14:46:26 +01:00
|
|
|
The instruction set emulator can be found in the NuttX SVN at
|
2012-09-17 21:33:42 +02:00
|
|
|
http://svn.code.sf.net/p/nuttx/code/trunk/misc/sims/z80sim
|
2007-12-29 02:05:26 +01:00
|
|
|
|
|
|
|
The SDCC toolchain is available from http://sdcc.sourceforge.net/. All
|
2008-02-07 15:41:11 +01:00
|
|
|
testing has been performed using version 2.6.0 of the SDCC toolchain.
|
2007-12-29 02:05:26 +01:00
|
|
|
|
2012-01-06 20:29:37 +01:00
|
|
|
Contents
|
|
|
|
^^^^^^^^
|
|
|
|
|
|
|
|
o Configuring NuttX
|
2012-12-03 15:13:23 +01:00
|
|
|
o SDCC
|
2012-01-06 20:29:37 +01:00
|
|
|
o Building the SDCC toolchain
|
|
|
|
o SDCC Update
|
|
|
|
o Newer SDCC Versions
|
|
|
|
|
2008-01-01 00:52:53 +01:00
|
|
|
Configuring NuttX
|
|
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
|
2008-02-07 02:39:20 +01:00
|
|
|
ostest
|
2012-12-03 15:13:23 +01:00
|
|
|
|
2008-02-07 02:39:20 +01:00
|
|
|
This configuration performs a simple, minimal OS test using
|
|
|
|
examples/ostest. This can be configurated as follows:
|
2008-01-01 00:52:53 +01:00
|
|
|
|
2012-09-14 00:04:47 +02:00
|
|
|
cd tools
|
|
|
|
./configure.sh z80sim/ostest
|
|
|
|
cd -
|
|
|
|
. ./setenv.sh
|
2008-01-01 00:52:53 +01:00
|
|
|
|
2012-12-03 16:33:24 +01:00
|
|
|
NOTES:
|
|
|
|
|
|
|
|
1. This configuration uses the mconf-based configuration tool. To
|
|
|
|
change this configuration using that tool, you should:
|
|
|
|
|
|
|
|
a. Build and install the mconf tool. See nuttx/README.txt and
|
|
|
|
misc/tools/
|
|
|
|
|
|
|
|
b. Execute 'make menuconfig' in nuttx/ in order to start the
|
|
|
|
reconfiguration process.
|
|
|
|
|
2012-12-03 21:12:59 +01:00
|
|
|
2. The default setup for this configuration uses a windows native build.
|
2012-12-07 20:02:57 +01:00
|
|
|
As of this writing, the native Windows build still does not work.
|
2012-12-03 21:12:59 +01:00
|
|
|
|
|
|
|
This configuration was last verified sucessfully prior to the
|
|
|
|
the configure to Kconfig/mconf tool using SDCC 2.6.0 built to run
|
|
|
|
natively under Cygwin.
|
|
|
|
|
|
|
|
3. This configuration can be converted to run under Linux (or Cygwin or
|
|
|
|
OSX), by modifying the configuration file as follows:
|
|
|
|
|
|
|
|
-CONFIG_HOST_WINDOWS=y
|
|
|
|
-CONFIG_WINDOWS_NATIVE=y
|
|
|
|
+CONFIG_HOST_LINUX=y
|
|
|
|
|
|
|
|
-CONFIG_Z80_TOOLCHAIN_SDCCW=y
|
|
|
|
+CONFIG_Z80_TOOLCHAIN_SDCCL=y
|
|
|
|
|
|
|
|
You make also have to change the value of CONFIG_APPS_DIR. You cannot
|
|
|
|
use the default setenv.bat. Use configs/z80sim/script/setenv.sh instead.
|
|
|
|
|
2008-02-07 02:39:20 +01:00
|
|
|
nsh
|
2012-12-03 15:13:23 +01:00
|
|
|
|
2008-01-02 15:17:02 +01:00
|
|
|
This configuration file builds NSH (examples/nsh). This
|
|
|
|
configuration is not functional due to issues with use of the
|
|
|
|
simulated serial driver (see the TODO list).
|
2008-01-01 00:52:53 +01:00
|
|
|
|
2008-02-07 02:39:20 +01:00
|
|
|
This configuration can be selected by:
|
2008-01-01 00:52:53 +01:00
|
|
|
|
2012-09-14 00:04:47 +02:00
|
|
|
cd tools
|
|
|
|
./configure.sh z80sim/nsh
|
|
|
|
cd -
|
|
|
|
. ./setenv.sh
|
2008-02-07 02:39:20 +01:00
|
|
|
|
|
|
|
pashello
|
2012-12-03 15:13:23 +01:00
|
|
|
|
2008-02-07 02:39:20 +01:00
|
|
|
Configures to use examples/pashello for execution from FLASH
|
|
|
|
See examples/README.txt for information about pashello.
|
|
|
|
|
|
|
|
This configuration is not usable because the resulting binary
|
|
|
|
is too large for the z80 address space.
|
2008-01-01 00:52:53 +01:00
|
|
|
|
2008-02-07 02:39:20 +01:00
|
|
|
This configuration can be selected by:
|
|
|
|
|
2012-09-14 00:04:47 +02:00
|
|
|
cd tools
|
|
|
|
./configure.sh z80sim/pashello
|
|
|
|
cd -
|
|
|
|
. ./setenv.sh
|
2008-01-01 00:52:53 +01:00
|
|
|
|
2012-12-03 15:13:23 +01:00
|
|
|
SDCC
|
|
|
|
^^^^
|
|
|
|
|
|
|
|
These z80 configurations all use the SDCC toolchain (http://sdcc.sourceforge.net/).
|
|
|
|
Source and pre-built SDCC binaries can be downloaded from the SDCC SourceForge
|
|
|
|
site: http://sourceforge.net/projects/sdcc/files/ . Pre-built binaries are
|
|
|
|
available for Linux, MAC OSX, and for Win32. Various SDCC options can be
|
|
|
|
selected with:
|
|
|
|
|
2012-12-03 16:33:24 +01:00
|
|
|
CONFIG_Z80_TOOLCHAIN_SDCCL=y : SDCC for Linux, MAC OSX or Cygwin (see below)
|
|
|
|
CONFIG_Z80_TOOLCHAIN_SDCCW=y : SDCC for Win32
|
2012-12-03 15:13:23 +01:00
|
|
|
|
2012-12-07 20:02:57 +01:00
|
|
|
SDCC versions 3.2.0 or higher are recommended.
|
|
|
|
|
2007-12-29 02:05:26 +01:00
|
|
|
Building the SDCC toolchain
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2012-12-03 15:13:23 +01:00
|
|
|
You may also want to build your own SDCC toolchain. You might want to do this,
|
|
|
|
for example, if you are running under Cygwin and want a Cygwin compatible
|
|
|
|
SDCC toolchain.
|
|
|
|
|
2007-12-29 02:05:26 +01:00
|
|
|
The SDCC toolchain is built with the standard configure/make/make install
|
|
|
|
sequence. However, some special actions are required to generate libraries
|
|
|
|
compatible with this build. First start with the usual steps
|
|
|
|
|
|
|
|
download
|
|
|
|
unpack
|
|
|
|
cd sdcc
|
|
|
|
./configure
|
2007-12-31 00:34:20 +01:00
|
|
|
|
|
|
|
Then make the SDCC binaries
|
|
|
|
|
|
|
|
cd sdcc
|
2007-12-29 02:05:26 +01:00
|
|
|
make
|
2007-12-31 00:34:20 +01:00
|
|
|
|
|
|
|
and install SDCC:
|
|
|
|
|
|
|
|
sudo make install
|
2009-11-07 01:03:22 +01:00
|
|
|
|