Commit da78b90b authored by Patrice Mandin's avatar Patrice Mandin

Atari CD-ROM support

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40725
parent 002129c5
...@@ -48,13 +48,11 @@ Keyboard (GEMDOS, BIOS, GEM, Ikbd) ...@@ -48,13 +48,11 @@ Keyboard (GEMDOS, BIOS, GEM, Ikbd)
Mouse (XBIOS, GEM, Ikbd) Mouse (XBIOS, GEM, Ikbd)
Video (XBIOS (Fullscreen), GEM (Windowed and Fullscreen)) Video (XBIOS (Fullscreen), GEM (Windowed and Fullscreen))
Timer (VBL vector, GNU pth library) Timer (VBL vector, GNU pth library)
Joystick and joypad support (Ikbd, Hardware) Joystick and joypad (Ikbd, Hardware)
Audio support (Hardware, XBIOS, GSXB, MCSN, STFA, /dev/audio if threads enabled) Audio (Hardware, XBIOS, GSXB, MCSN, STFA, /dev/audio if threads enabled)
Threads support (Multitasking OS only via GNU pth library) Threads (Multitasking OS only via GNU pth library)
Shared object support (using LDG library from http://ldg.atari.org/) Shared object loader (using LDG library from http://ldg.atari.org/)
Audio CD (MetaDOS)
- What is missing:
CDROM support (Metados, /dev/cdrom)
- Driver combinations: - Driver combinations:
Video Kbd Mouse Timer Joystick Video Kbd Mouse Timer Joystick
......
...@@ -2503,8 +2503,8 @@ case "$target" in ...@@ -2503,8 +2503,8 @@ case "$target" in
fi fi
# Set up files for the cdrom library # Set up files for the cdrom library
if test x$enable_cdrom = xyes; then if test x$enable_cdrom = xyes; then
CDROM_SUBDIRS="$CDROM_SUBDIRS dummy" CDROM_SUBDIRS="$CDROM_SUBDIRS mint"
CDROM_DRIVERS="$CDROM_DRIVERS dummy/libcdrom_dummy.la" CDROM_DRIVERS="$CDROM_DRIVERS mint/libcdrom_mint.la"
fi fi
# Set up files for the thread library # Set up files for the thread library
if test x$enable_threads = xyes; then if test x$enable_threads = xyes; then
...@@ -2765,6 +2765,7 @@ src/cdrom/freebsd/Makefile ...@@ -2765,6 +2765,7 @@ src/cdrom/freebsd/Makefile
src/cdrom/linux/Makefile src/cdrom/linux/Makefile
src/cdrom/macos/Makefile src/cdrom/macos/Makefile
src/cdrom/macosx/Makefile src/cdrom/macosx/Makefile
src/cdrom/mint/Makefile
src/cdrom/openbsd/Makefile src/cdrom/openbsd/Makefile
src/cdrom/osf/Makefile src/cdrom/osf/Makefile
src/cdrom/qnx/Makefile src/cdrom/qnx/Makefile
......
...@@ -15,6 +15,7 @@ DIST_SUBDIRS = \ ...@@ -15,6 +15,7 @@ DIST_SUBDIRS = \
linux \ linux \
macos \ macos \
macosx \ macosx \
mint \
openbsd \ openbsd \
osf \ osf \
qnx \ qnx \
......
## Makefile.am for the MiNT+MetaDOS cdrom driver for SDL
noinst_LTLIBRARIES = libcdrom_mint.la
libcdrom_mint_la_SOURCES = $(SRCS)
# The SDL cdrom driver sources
SRCS = SDL_syscdrom.c
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment