revision 1170:9ffc8295b414
summary |
tree |
shortlog |
changelog |
graph |
changeset |
raw | bz2 | zip | gz changeset | 1170:9ffc8295b414 |
parent | 1169:23a9613aceb1 |
child | 1171:d644413208a3 |
author | nkeynes |
date | Fri Apr 08 08:11:20 2011 +1000 (11 years ago) |
Merge changes from Reimann80, plus additional tweaks. Thanks!
![]() | Makefile.am | view | annotate | diff | log | |
![]() | Makefile.in | view | annotate | diff | log | |
![]() | lxdream.pod | view | annotate | diff | log |
1.1 --- a/Makefile.am Thu Apr 07 21:42:55 2011 +10001.2 +++ b/Makefile.am Fri Apr 08 08:11:20 2011 +10001.3 @@ -17,7 +17,7 @@1.4 man_MANS = lxdream.11.6 lxdream.1: lxdream.pod1.7 - $(POD2MAN) $< $@1.8 + $(POD2MAN) -c "Lxdream: A Dreamcast emulator" $< $@1.10 install-data-local:1.11 @$(NORMAL_INSTALL)
2.1 --- a/Makefile.in Thu Apr 07 21:42:55 2011 +10002.2 +++ b/Makefile.in Fri Apr 08 08:11:20 2011 +10002.3 @@ -790,7 +790,7 @@2.6 lxdream.1: lxdream.pod2.7 - $(POD2MAN) $< $@2.8 + $(POD2MAN) -c "Lxdream: A Dreamcast emulator" $< $@2.10 install-data-local:2.11 @$(NORMAL_INSTALL)
3.1 --- a/lxdream.pod Thu Apr 07 21:42:55 2011 +10003.2 +++ b/lxdream.pod Fri Apr 08 08:11:20 2011 +10003.3 @@ -1,6 +1,6 @@3.4 =head1 NAME3.6 -lxdream - A dreamcast emulator3.7 +lxdream - A Dreamcast emulator3.9 =head1 SYNOPSIS3.11 @@ -8,24 +8,46 @@3.13 =head1 DESCRIPTION3.15 +Emulates the Sega Dreamcast console. Lxdream can run games either from disc image files, from progam files or from CD-ROM discs.3.16 +3.17 =head1 OPTIONS3.19 =over3.21 -=item B<-A>, B<--audio>=I<audio-driver>3.22 +=item B<-a>, B<--aica>=I<PROGFILE>3.23 +3.24 +Run the AICA SPU only, with the supplied program.3.25 +3.26 +=item B<-A>, B<--audio>=I<DRIVER>3.28 Set the preferred audio driver. If the specified audio driver cannot start, the system3.29 will try all other available drivers in the standard order. To see which drivers are3.30 supported, run lxdream -A ?3.31 -3.32 -=item B<-c>, B<--config>=F<config-filename>3.34 -Load configuration information from F<config-filename> instead of the system default3.35 +=item B<-b>, B<--biosless>3.36 +3.37 +Do not load the BIOS rom on startup, even if one is configured.3.38 +3.39 +=item B<-c>, B<--config>=I<CONFILE>3.40 +3.41 +Load configuration information from B<CONFILE> instead of the system default3.43 =item B<-d>, B<--debugger>3.45 Launch the debugger on startup (GTK platforms only).3.47 +=item B<-f>, B<--fullscreen>3.48 +3.49 +Use this option to start the program in fullscreen mode.3.50 +3.51 +=item B<-g>, B<--gdb-sh4>=I<PORT>3.52 +3.53 +Start the GDB remote server on B<PORT> for SH4.3.54 +3.55 +=item B<-G>, B<--gdb-arm>=I<PORT>3.56 +3.57 +Start the GDB remote server on B<PORT> for ARM.3.58 +3.59 =item B<-h>, B<--help>3.61 Print command line usage information3.62 @@ -35,13 +57,13 @@3.63 Run in headless mode (no GUI or video output). This is mainly useful for testing CPU3.64 functions and performance. Equivalent to -V null.3.66 -=item B<-l>, B<--log>=I<log-level>3.67 +=item B<-l>, B<--log>=I<LEVEL>3.69 Set the system log level to the specified level of verbosity, which must be one of the following options:3.70 FATAL, ERROR, WARN, INFO, DEBUG, TRACE (non-case-sensitive, and only the first letter is required). The3.71 default level is WARN.3.73 -=item B<-m> B<--multiplier>=I<scale>3.74 +=item B<-m>, B<--multiplier>=I<SCALE>3.76 Change the SH4 core clock speed using the supplied floating-point multiplier, where 1.03.77 is full speed, 0.5 is half speed, and so on. The default is 0.5.3.78 @@ -57,13 +79,13 @@3.79 the system will only start automatically if a disc or program was given on the command3.80 line.3.82 -=item B<-t>, B<--run-time>=I<seconds>3.83 +=item B<-t>, B<--run-time>=I<SECONDS>3.85 Run the dreamcast for exactly the specified amount of time, and then terminate, ie3.86 lxdream -pt 5.2 will exit after 5.2 seconds of emulated runtime. Useful for performance3.87 measurements of arbitrary sections of code.3.89 -=item B<-T>, B<--trace>=I<trace-list>3.90 +=item B<-T>, B<--trace>=I<REGIONS>3.92 Activate I/O region tracing for the specified list of MMIO regions. This option is only3.93 available if lxdream was configured with --enable-trace. If enabled, trace-list may be3.94 @@ -83,7 +105,7 @@3.96 Print the lxdream version string.3.98 -=item B<-V> I<video-driver>3.99 +=item B<-V> B<DRIVER>3.101 Set the preferred video driver. If the specified video driver cannot start, the system3.102 will exit with an error. To see the available video drivers, run lxdream -V ?3.103 @@ -106,9 +128,13 @@3.105 =back3.107 +=head1 AUTHOR3.108 +3.109 +Nathan Keynes <nkeynes@lxdream.org>3.110 +3.111 =head1 COPYRIGHT3.113 -Copyright 2005-2008 Nathan Keynes <nkeynes@lxdream.org>3.114 +Copyright 2005-2011 Nathan Keynes <nkeynes@lxdream.org>3.116 This program is free software; you can redistribute it and/or modify3.117 it under the terms of the GNU General Public License as published by
.