Skip to content

Commit

Permalink
Atari CD-ROM support
Browse files Browse the repository at this point in the history
  • Loading branch information
pmandin committed Sep 27, 2003
1 parent b8b2357 commit 5587260
Show file tree
Hide file tree
Showing 5 changed files with 482 additions and 9 deletions.
12 changes: 5 additions & 7 deletions README.MiNT
Expand Up @@ -48,13 +48,11 @@ Keyboard (GEMDOS, BIOS, GEM, Ikbd)
Mouse (XBIOS, GEM, Ikbd)
Video (XBIOS (Fullscreen), GEM (Windowed and Fullscreen))
Timer (VBL vector, GNU pth library)
Joystick and joypad support (Ikbd, Hardware)
Audio support (Hardware, XBIOS, GSXB, MCSN, STFA, /dev/audio if threads enabled)
Threads support (Multitasking OS only via GNU pth library)
Shared object support (using LDG library from http://ldg.atari.org/)

- What is missing:
CDROM support (Metados, /dev/cdrom)
Joystick and joypad (Ikbd, Hardware)
Audio (Hardware, XBIOS, GSXB, MCSN, STFA, /dev/audio if threads enabled)
Threads (Multitasking OS only via GNU pth library)
Shared object loader (using LDG library from http://ldg.atari.org/)
Audio CD (MetaDOS)

- Driver combinations:
Video Kbd Mouse Timer Joystick
Expand Down
5 changes: 3 additions & 2 deletions configure.in
Expand Up @@ -2503,8 +2503,8 @@ case "$target" in
fi
# Set up files for the cdrom library
if test x$enable_cdrom = xyes; then
CDROM_SUBDIRS="$CDROM_SUBDIRS dummy"
CDROM_DRIVERS="$CDROM_DRIVERS dummy/libcdrom_dummy.la"
CDROM_SUBDIRS="$CDROM_SUBDIRS mint"
CDROM_DRIVERS="$CDROM_DRIVERS mint/libcdrom_mint.la"
fi
# Set up files for the thread library
if test x$enable_threads = xyes; then
Expand Down Expand Up @@ -2765,6 +2765,7 @@ src/cdrom/freebsd/Makefile
src/cdrom/linux/Makefile
src/cdrom/macos/Makefile
src/cdrom/macosx/Makefile
src/cdrom/mint/Makefile
src/cdrom/openbsd/Makefile
src/cdrom/osf/Makefile
src/cdrom/qnx/Makefile
Expand Down
1 change: 1 addition & 0 deletions src/cdrom/Makefile.am
Expand Up @@ -15,6 +15,7 @@ DIST_SUBDIRS = \
linux \
macos \
macosx \
mint \
openbsd \
osf \
qnx \
Expand Down
8 changes: 8 additions & 0 deletions src/cdrom/mint/Makefile.am
@@ -0,0 +1,8 @@

## 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

0 comments on commit 5587260

Please sign in to comment.