AltairZ80: M68K: Move Musashi to m68k directory.
The M68K CPU is from https://github.com/kstenerud/Musashi. Move into its own directory to facilitate easier synchronization with upstream Musashi.
This commit is contained in:
parent
7b494542ef
commit
9fa55d0013
18 changed files with 14 additions and 14 deletions
|
@ -27,7 +27,7 @@
|
||||||
Code for Z80 CPU from Frank D. Cringle ((c) 1995 under GNU license)
|
Code for Z80 CPU from Frank D. Cringle ((c) 1995 under GNU license)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "m68k.h"
|
#include "m68k/m68k.h"
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#define SWITCHCPU_DEFAULT 0xfd
|
#define SWITCHCPU_DEFAULT 0xfd
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
Contains code from Howard M. Harte for defining and changing disk geometry.
|
Contains code from Howard M. Harte for defining and changing disk geometry.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "m68k.h"
|
#include "m68k/m68k.h"
|
||||||
#include "sim_imd.h"
|
#include "sim_imd.h"
|
||||||
|
|
||||||
/* Debug flags */
|
/* Debug flags */
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
03/27/14 -- MWD Add MITS Hard Disk device (mhdsk_dev)
|
03/27/14 -- MWD Add MITS Hard Disk device (mhdsk_dev)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "m68k.h"
|
#include "m68k/m68k.h"
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#define SIM_EMAX 6
|
#define SIM_EMAX 6
|
||||||
|
|
|
@ -77,7 +77,7 @@
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "m68k.h"
|
#include "m68k/m68k.h"
|
||||||
|
|
||||||
/* Read/write macros */
|
/* Read/write macros */
|
||||||
#define READ_BYTE(BASE, ADDR) (BASE)[ADDR]
|
#define READ_BYTE(BASE, ADDR) (BASE)[ADDR]
|
||||||
|
|
|
@ -252,31 +252,31 @@
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\AltairZ80\m68kasm.c"
|
RelativePath="..\AltairZ80\m68k\m68kasm.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\AltairZ80\m68kcpu.c"
|
RelativePath="..\AltairZ80\m68k\m68kcpu.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\AltairZ80\m68kdasm.c"
|
RelativePath="..\AltairZ80\m68k\m68kdasm.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\AltairZ80\m68kopac.c"
|
RelativePath="..\AltairZ80\m68k\m68kopac.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\AltairZ80\m68kopdm.c"
|
RelativePath="..\AltairZ80\m68k\m68kopdm.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\AltairZ80\m68kopnz.c"
|
RelativePath="..\AltairZ80\m68k\m68kopnz.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\AltairZ80\m68kops.c"
|
RelativePath="..\AltairZ80\m68k\m68kops.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
|
|
6
makefile
6
makefile
|
@ -1851,9 +1851,9 @@ ALTAIRZ80 = ${ALTAIRZ80D}/altairz80_cpu.c ${ALTAIRZ80D}/altairz80_cpu_nommu.c \
|
||||||
${ALTAIRZ80D}/s100_tarbell.c \
|
${ALTAIRZ80D}/s100_tarbell.c \
|
||||||
${ALTAIRZ80D}/wd179x.c ${ALTAIRZ80D}/s100_hdc1001.c \
|
${ALTAIRZ80D}/wd179x.c ${ALTAIRZ80D}/s100_hdc1001.c \
|
||||||
${ALTAIRZ80D}/s100_if3.c ${ALTAIRZ80D}/s100_adcs6.c \
|
${ALTAIRZ80D}/s100_if3.c ${ALTAIRZ80D}/s100_adcs6.c \
|
||||||
${ALTAIRZ80D}/m68kcpu.c ${ALTAIRZ80D}/m68kdasm.c ${ALTAIRZ80D}/m68kasm.c \
|
${ALTAIRZ80D}/m68k/m68kcpu.c ${ALTAIRZ80D}/m68k/m68kdasm.c ${ALTAIRZ80D}/m68k/m68kasm.c \
|
||||||
${ALTAIRZ80D}/m68kopac.c ${ALTAIRZ80D}/m68kopdm.c \
|
${ALTAIRZ80D}/m68k/m68kopac.c ${ALTAIRZ80D}/m68k/m68kopdm.c \
|
||||||
${ALTAIRZ80D}/m68kopnz.c ${ALTAIRZ80D}/m68kops.c ${ALTAIRZ80D}/m68ksim.c
|
${ALTAIRZ80D}/m68k/m68kopnz.c ${ALTAIRZ80D}/m68k/m68kops.c ${ALTAIRZ80D}/m68ksim.c
|
||||||
ALTAIRZ80_OPT = -I ${ALTAIRZ80D}
|
ALTAIRZ80_OPT = -I ${ALTAIRZ80D}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue