| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |
|
|
| |
arcade-type drivers
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
infoxml.cpp: Thread device processing. Gives about a 10% speed
improvement overall, and avoids the need to mess with the locale of the
ultimate output stream.
debugger/win/consolewininfo.cpp: Show image mount/create error messages
on the console.
emu/devdelegate.h, util/delegate.h: Added deduction guides for common
delegate creation patterns (only used in sega/segas16a.cpp so far).
More noexcept on things that have no business throwing exceptions.
|
| |
|
|
|
|
|
|
|
|
|
| |
Use VirtualAlloc rather than VirtualProtect on Windows to change page
protection, as the latter can cause severe performance issues with some
antivirus software.
Added noexcept to lots of hash- and bitmap-related things, and added a
little more error checking. Yes, I realise it will abort if an
allocation fails while printing a log message, but if you get to that
point, you're probably screwed already.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
| |
abc800_dsk: Split to interleaved and non-interleaved disk formats. [Curt Coder]
New working software list items
-------------------------------
abc838_flop: Systemskiva ABC800 v1.0 (Sweden), Systemskiva för UFD-DOS v6.3 (Sweden) [Curt Coder]
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
util/bitmap.cpp, util/palette.cpp: Marked lots of things constexpr.
Bitmaps don't throw exceptions on allocation failure, they just become
invalid. Almost nothing in MAME actually checks for this.
emu/profiler.cpp: Abort if the profile stack overflows rather than
throwing an exception. This is a developer feature and if it overflows,
the code is broken. Calling a noreturn noexcept function generates less
code than throwing an exception, which adds up.
util/strformat.cpp: Traded away some unnecessary flexibility for more
compact code. The stream objects must derive from std::basic_ostream
now - they can't just be any old objects with the expected operators.
|
| |
|
|
| |
* apple2video.cpp: Fix permissions
|
| |
|
|
| |
* bml3mp1802, x1: Hook up DDEN control for FDC
|
| |
|
|
|
| |
New working systems
---------------------
Brother LW-30
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* dataeast/cninja: Added an early version of Mutant Fighter called
Heroes. [Domenico Cervini]
* jaleco/psychic5.cpp: Updated ROM labels and locations for psychic5j.
[Domenico Cervini]
* konami/nemesis.cpp: Updated ROM labels and mask numbers for lifefrce.
[Domenico Cervini]
* seibu/seibuspi.cpp: Added cartridge PAL dumps for Raiden Fighters 2.
[Domenico Cervini]
* thepit/thepit.cpp: Added a version of The Pit that shows a Centuri Inc
copyright notice. [Domenico Cervini]
* util/jedparse.cpp: Fixed a bug when logging parsed fuse values, and
added more useful error log messages.
New working clones
------------------
Heroes (World ver EM-1) [Domenico Cervini]
The Pit (Centuri Inc) [Domenico Cervini]
|
| |
|
|
| |
* bus/s100: Added Vector Dual-Mode Disk Controller (only floppy supported for now).
* formats/vgi_dsk.cpp: Addec Micropolis VGI floppy disk image format.
|
| |
|
|
|
|
|
| |
* cpu/dsp56156: Removed vestigial (and excessively slow) "new" execution code.
* apple/bandit.cpp: Got rid of unnecessary friend declaration.
* nintendo/n64_v.cpp: More const.
* Fixed a few "const qualifier has no effect" warnings.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
infoxml.cpp that returns a new std::string instead of a static buffer
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
emu/input.cpp: Fixed regression in display of some joystick inputs.
osd/interface: Split up interface classes into a few more files to
reduce where the input device interface class needs to be included.
Made OSD independent of concrete input_device class.
osd/modules/input, emu/inputdev.cpp, emu/ioport.cpp: Allow input devices
to provide tokens for controls without standard item types and
additional default input assignments. Fixes issues assigning Yen and
Backslash on Japanese keyboards.
ui/textbox.cpp: Added a fixed-content text box menu class for future
use.
Got main.h out of emu.h as it’s only used in a very small number of
places, mostly for getting the application name. Added eminline.h to
attotime.h as it's used without emu.h. Cleaned up forward declarations
in emufwd.h a little.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
caused it to incorrectly tolerate characters with the seventh bit set (#10802)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
LIF filesystem. (#10729)
Added support for various disk formats used with HP computers. Named
'hp300', but also contains formats used with HP85 and HP150 computers,
using the same floppy drivers as the 300 series.
Most of the information was taken from "HP Flexible Disk Formats" by
Martin Hepperle.
HP LIF was used in quite a lot of different HP products like the
HP 9000/300, HP85/87 and HP150 computers. Added support for
reading this filesystem.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
| |
opening files. (#9859)
* util/options.cpp: Added option types for single and multiple paths.
* util/options.cpp: Substitute environment variables in values from defaults and INI files.
* ui/dirmenu.cpp: Removed hard-coded list of multi-path options.
* plugins: Don't substitute environment variables in path options.
|
| |
|
|
| |
* thom_dsk.cpp: Add DSDD 5.25-inch format
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* Qt: Save expression for memory and disassembly views.
* Qt: Made command history behave more like Cocoa.
* Qt: Added expression history and made behaviour more like Cocoa.
* Qt: Refactored global notifications to use signals.
* Win32: Increased command/expression history size to 100 items.
* Cocoa: Save state of device info viewer windows.
* Qt/Win32/Cocoa: Save command/expression history.
-util/xmlfile.cpp: Fixed bug where copyInto failed to copy nodes.
|
| |\ |
|
| | | |
|
| |/ |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(#10549)
msx1_flop.xml:
- Moved msxdostb to msx1_flop_525.xml.
msx1_cart.xml:
- Added Kanji ROM to Japanese MSX-Write.
- Added Toshiba Kanji ROM
- Added Konami Word Processor with Kanji cartridge.
- Added several external floppy controllers and drives.
New working software list additions (msx1_cart.xml)
----------------------------------
CDX-2 + 5.25" DSDD floppy drive (Brazil) [openMSX]
DDX + 5.25" DSDD floppy drive (Brazil, v3.0d) [openMSX]
DDX + 5.25" DSDD floppy drive (Brazil, v3.0) [openMSX]
DPF-550 Controller + 5.25" SSDD floppy drive (Argentina) [openMSX]
DPF-550 Controller + 5.25" SSDD floppy drive (Belgium/Netherlands) [openMSX]
EC-700 Word Processor (EC-701 + EC-702) (Japan) [openMSX]
FD-051 Controller + FD-05 3.5" DSDD floppy drive [openMSX]
HB-3600 Controller + HB-6000 5.25" DSDD floppy drive (Brazil) [openMSX]
HBD-20W (Floppy controller + 3.5" DSDD floppy drive) (Japan) [openMSX]
HBD-50 (Floppy controller + 3.5" SSDD floppy drive, SNYJX121) [openMSX]
HBD-F1 (Floppy controller + 3.5" DSDD floppy drive) (Japan) [openMSX]
HX-F101PE Controller + 3.5" SSDD floppy drive (Europe) [openMSX]
MFD-001 (Controller + enclosure with 1 5.25" DSDD floppy drive) (Europe) [openMSX]
ML-30DC Controller + ML-30FD enclosure with 1 3.5" DSDD floppy drive (Japan) [openMSX]
NMS-1200 Floppy controller + 3.5" DSDD floppy drive (Europe, v1.06) [openMSX]
NMS-1200 Floppy controller + 3.5" DSDD floppy drive (Europe, v1.04) [openMSX]
Toshiba Kanji ROM Cartridge HX-M200 (Japan) [openMSX]
New software marked as NOT_WORKING (msx1_cart.xml)
----------------------------------
FD-03 Controller + 3.5" DSDD floppy drive v3.8 [openMSX]
FD-03 Controller + 3.5" DSDD floppy drive v3.5 [openMSX]
|
| | |
|