tomcw
f1f16d4fc2
Minor tweaks for previous Base64A merge:
...
. added dedicated IsCopamBase64A() function
. added comments to identify Copam Base64A specific vars
. added some missing const keywords
2020-07-06 20:52:31 +01:00
Iván Izaguirre
36e318e344
Support 'Copam Base 64A' - a Taiwanese Apple II clone ( #806 ) (PR #807 )
...
. It's an Apple II plus clone.
. The 48K bank-switched Rom is controlled with AN0 and AN1.
. The character generation video Rom has two full character sets: English and German (F10 to switch).
NB. At the prompt, "TEST" runs the ROM self-test.
2020-07-06 20:24:16 +01:00
tomcw
6dd129532f
Fixed mem leak after a VM restart. ( Fixes #809 )
2020-07-04 21:39:56 +01:00
Andrea
82c09abd54
Minor fixes ( #805 )
...
* Add missing Riff.h include and fix const correctness of arguments.
* Cosmetic improvements to Perf breakdown in LogPerfTimings().
* Logging - removed unnecessary cast.
2020-07-01 21:08:18 +01:00
tomcw
951f7f5258
Minor: added missing static keywords
2020-06-28 10:25:59 +01:00
tomcw
9bf0cf98d4
Fixed crash in debugger's PrintGlyph() when restarting AppleII virtual machine
...
Fixed mem leaks for debugger's Font & Mem frame buffers
2020-06-28 10:18:59 +01:00
tomcw
60d54d6f3b
Fix for 'IRQ occurring on last cycle of opcode' not always true. ( Fixes #796 )
...
. FT demo MAD2.DSK - original version now correctly crashes at start of full-screen scroller
. FT demo MADEF.DSK - graphics glitch on vertical edge where it transitions from GR to HGR mode
2020-06-27 19:29:29 +01:00
tomcw
e48ea095a3
Debugger: PrintGlyph() - removed magic numbers
2020-06-27 15:46:28 +01:00
Andrea
fe62271ef9
Some minor c++ correctness changes. ( #803 )
...
Added const, static forward declaration.
Removed some unneeded header files.
2020-06-27 14:32:09 +01:00
tomcw
42d265a25c
Fixed timing for 6502 opcodes: rol abs,x; lsr abs,x; ror abs,x. ( Fixes #801 )
2020-06-19 19:40:23 +01:00
Cyril Lambin
af9568cbbf
Improved debugger video performance ( #800 )
...
Removed very slow BitBlt() GDI calls in PrintGlyph() - now 18x faster in Release config!
. Replaced GDI call FillRect() with new FillBackground()
. Added missing bitmap declarations in GetDebuggerMemDC()
Fixed AdditionalIncludeDirectories for Debugger source files
2020-06-17 21:56:35 +01:00
tomcw
c9ef6ecee1
NoSlotClock:
...
. added to save-state (v6) via a new unit type 'Miscellaneous'
. added cmd line switch '-no-nsc' to configure AppleII without an NSC
2020-06-10 20:56:00 +01:00
tomcw
f491bb19cd
Improved fix for 80eb330
...
. During init: only need to call IoHandlerCardsOut() when loading save-state
. MemInitialize() -> MemReset() -> ResetPaging() which always inits memmode
2020-06-08 22:06:17 +01:00
tomcw
6d85c1b6bd
NSC: Reset NSC on power-cycle. ( Fixes #751 )
2020-06-08 21:11:12 +01:00
tomcw
80eb33012f
Fixed an edge case when switching from IIe to II+, and the Mockingboard wasn't visible in memory.
...
. Due to INTCXROM still being set and it not being excluded when in II+ mode.
. Fix is to reinit memmode on restart and only check INTCXROM if IIe or above.
2020-06-07 18:25:34 +01:00
tomcw
41203f5d2d
Fixes for image loading switches (-d1,-d2,-h1,-h2,-s5d1,-s5d2):
...
. support relative paths (#663 )
. updated the current directory with the path for each loaded image (#663 ) & saving state (#691 )
. added a new switch -current-dir <path>
2020-06-06 16:32:58 +01:00
tomcw
f238be27e8
Use SetCursor() to busy when loading state file. ( Fixes #781 )
...
Fixed typos in dbg-bookmarks.html.
2020-06-03 20:26:06 +01:00
tomcw
f801655b23
Debugger: DrawFlags() - refactored to remove unused 3rd param
2020-05-30 14:41:14 +01:00
TomCh
037c338303
Debugger: Extend 'tf' command to add cycles for trace ( #783 ) (PR #793 )
...
Also don't call DrawFlags(), speeding up tracing by 10 times.
Authored-by: Nick Westgate
2020-05-30 14:12:36 +01:00
tomcw
4f340fa264
Revert previous fa04797
:
...
. again '-s7 empty' doesn't persist this state to Registry/conf.ini
. consistent with other '-sn empty' cmds
2020-05-29 21:58:53 +01:00
tomcw
fa047974ec
Fixed cmd line '-s7 empty' so that 'Harddisk Enable' is updated in Registry/conf.ini file
...
. this matches -s7-empty-on-exit and the -d1,-d2,-h1,-h2 switches
2020-05-28 21:41:15 +01:00
tomcw
b132b0d0a8
Added cmd line switch: -power-on
2020-05-26 21:37:56 +01:00
tomcw
eed3182bef
Fixed cmd line regressions: ( #790 )
...
. -s7-empty-on-exit wasn't being recognised
. -d1, -d2 weren't saving the 'Last Disk Image 1/2' & 'Starting Directory'
2020-05-25 21:59:26 +01:00
tomcw
cca3ecd436
Full-speed: fix for occasional speaker clicks
2020-05-23 22:34:15 +01:00
TomCh
a8671f7a6a
Debugger: Extend 'cycles' command to do (partial) timings relative to a user-specified instruction ( #787 ) (PR #789 )
2020-05-23 18:40:12 +01:00
tomcw
13a4043118
Added a new PerfMarker class: used to instrument emulation sub-systems and log timings ( #788 )
...
To enable this uncomment the #define LOG_PERF_TIMINGS in AppleWin.h.
2020-05-23 16:41:19 +01:00
michaelangel007
2b9adac338
Debugger: 2.9.1.0 Bookmarks now have their own indicator
2020-05-19 08:37:15 -07:00
michaelangel007
dfbb63934c
Debugger 2.9.0.18
2020-05-19 08:29:23 -07:00
michaelangel007
0c0e2f6bdd
Debugger fixes for 2.9.0.16 and 2.9.0.17
2020-05-19 08:28:44 -07:00
tomcw
58df8ea1e6
MB/SSI263 - alt logging via LOG_SSI263B
2020-05-10 18:21:34 +01:00
tomcw
61a3f06172
MB/Phasor: SSI263 - improved save-state for different speech cards' IRQs
2020-04-26 18:07:38 +01:00
tomcw
358573a9db
Fix for when joystick not connected ( fixes #778 )
2020-04-26 16:19:50 +01:00
tomcw
f201294451
MB/Phasor: SSI263
...
. extend for 6522 PCR CA1 input control=0, which sets IFR.b1 on phoneme complete
2020-04-26 10:10:39 +01:00
tomcw
389b6e6d23
Mockingboard: replicate 6522 I/O across entire $Cnxx I/O space
...
. SSI263.b7 not readable
. SSI263 writes also written to 6522 in low addr
2020-04-25 16:42:50 +01:00
tomcw
9f49820a8d
Phasor: support SSI263 speech for Mockingboard mode ( #777 )
...
. Improved DEVICE_SELECT' I/O support (including Echo+).
. SSI263_Read() only for Phasor in Phasor mode.
. save-state: v6 (Phasor unit): phasor mode extended.
SSI263 (MB/Phasor) bug fix for when RESET/Power-cycle during phoneme playback.
Logging:
. improved for SSI263
. in CPU.cpp, added 'IRQ' / 'ISR-end'
2020-04-19 21:00:37 +01:00
tomcw
22806c6c59
Phasor: support both kinds of speech interrupts ( #777 )
2020-04-07 22:11:31 +01:00
tomcw
2fa22d220b
Merge branch 'feature/no-registry' of ssh://github.com/taeber/AppleWin into taeber-feature/no-registry
2020-04-03 21:29:54 +01:00
tomcw
1739a84b0f
Fixed CmdCursorSetPC command: (PR #775 )
...
. Hitting "=" in the debugger should set PC to the current cursor address
2020-04-03 21:15:17 +01:00
tomcw
e6a8c75f6c
Fixed J-Plus issue with -load-state
2020-04-02 23:39:18 +01:00
TomCh
dd2914a38e
Support Apple II J-Plus model ( #773 , PR #776 )
...
. Added II-JPlus rom & video rom
. Added new apple2jp model
. Fixed support for AN3 for II/II+ models (nothing to do with J-Plus support)
2020-04-02 20:17:32 +01:00
tomcw
427cb9312b
1.29.11.0: Updated version
2020-03-27 20:31:06 +00:00
tomcw
ec8e758c79
Custom ROM: minor refactor
2020-03-26 22:16:00 +00:00
tomcw
3659603228
Added cmd line arg -rom <file> for 12KB & 16KB roms ( #771 )
2020-03-25 23:05:02 +00:00
tomcw
c204783816
MB/6522: IER doesn't start/stop timers
2020-03-07 18:08:50 +00:00
tomcw
ef4ee4ed16
Fixed 6522.T2 interrupt for Lancaster ( #765 )
2020-02-29 18:48:46 +00:00
tomcw
2f9ba13216
Fixed warning when LOG_DISK_ENABLED isn't defined
2020-02-23 13:23:48 +00:00
tomcw
b84bb97aa1
Disk logging: Improved info & formatting for DumpTrackWOZ()
2020-02-23 13:19:38 +00:00
tomcw
3dc0aae5b2
Removed assert & added repro comment
2020-02-22 12:04:13 +00:00
TomCh
21d16d3a0c
Auto-switch DiskII firmware to 13 or 16 sector depending on disk in drive-1 ( #734 ) (PR #761 )
...
. The auto-switch is done on each reset, or on inserting a disk at the start-up screen (MODE_LOGO).
. The Window's title include '(S6-13)' if DiskII card has 13-sector f/w.
. The debugger's 'disk info' cmd will show FW13 or FW16 depending on f/w.
2020-02-22 11:38:25 +00:00
tomcw
fc8753501f
1.29.10.0: Updated version
2020-02-13 19:39:35 +00:00
tomcw
ad599680d2
Small refactor for WOZ2 write track
2020-02-11 21:29:27 +00:00
Taeber Rapczak
c7d2fef62f
Allow use of an INI-file instead of the Registry
...
This change adds the `-conf` switch which, if specified, will use an
INI-file instead of the Windows Registry.
This addresses AppleWin/AppleWin#709 and AppleWin/AppleWin#446 .
2020-02-09 21:18:31 -05:00
TomCh
4956957ca1
Write support for WOZ1/WOZ2 images ( #756 )
...
Also:
- Allow creation of a blank (WOZ2) image
- multi-zip support extended to scan for the first valid image (useful for most woz-a-day zips which have at least 2 entries and were previously failing)
2020-02-09 21:23:15 +00:00
tomcw
0f681de531
Fixed regression for CTRL+ALT+BREAK (where ALT wasn't recognised). ( Fixes #752 )
2020-01-26 11:57:40 +00:00
tomcw
fcd1b2aa68
Fix for double-clicking an associated filetype
2020-01-21 19:27:13 +00:00
tomcw
84e0ef4ef8
Cmd line: Ensure that -swap-buttons takes priority over Registry
2020-01-19 17:09:24 +00:00
tomcw
045d7b6509
Config: Input: Added 'Swap 0/1' toggle for swapping buttons 0 & 1
2020-01-18 19:06:06 +00:00
tomcw
53342d5550
Speed control using Ctrl+n: ignore if ALT is pressed. ( Fixes #749 )
2020-01-18 17:15:54 +00:00
tomcw
ddbc1a8aa9
ProcessCmdLine()
...
. Display MessageBox with all unsupported commands that were passed in.
. MessageBox yes/no response will either continue or exit AppleWin.
Changed -left-control-alt-buttons to -left-alt-control-buttons (for consistency with -right-alt-control-buttons) (#743 )
. The MessageBox will now confirm whether you typed it correctly or not.
Fixed DHIRESON/OFF typo in comment!
2020-01-18 16:47:20 +00:00
tomcw
78337c06bb
WOZ: Removed version check on INFO section
2020-01-14 20:32:46 +00:00
tomcw
1e57ad7464
DiskII: data latch returns a rand() value when no disk is in drive. ( Fixes #748 )
2020-01-12 22:41:40 +00:00
tomcw
68eb7ea1e1
Debugger: Added new 'cycles <abs|rel>' command to show cycles as absolute or relative.
...
. removed this functionality from 'videoinfo'
2020-01-11 17:38:00 +00:00
Andrea
af720f7352
Correct way to clear a std::string. (PR #723 )
2020-01-09 22:12:51 +00:00
tomcw
40522204ad
Joystick: support redefined button0/1 keys when not using keyboard for joystick
2020-01-09 22:04:26 +00:00
tomcw
29c0f1e4f0
Cmd line support for remapping button0&1: ( #743 )
...
. -left-control-alt-buttons : l-ctrl=button0, l-alt=button1
. -right-alt-control-buttons : r-alt=button0, r-ctrl=button1
. -swap-buttons
2020-01-07 22:04:37 +00:00
tomcw
0f473d44b6
VS2019: include <stdexcept> for std::runtime_error
2020-01-06 21:08:00 +00:00
tomcw
087616db29
Fixed Coverity 'High Impact Outstanding' issues:
...
1489113
1489111
1489105
1489096
1489093
1489092
1486059
1486055 (false positive)
1486054
1486051 (false positive)
1486050
1486047 (false positive)
1486043
1446684
2020-01-04 17:43:20 +00:00
tomcw
edf65762cd
CardManager refactor:
...
. replaced most GetObj() with GetRef()
. so dynamic_cast'ing to a reference now (instead of a pointer)
2020-01-04 13:58:59 +00:00
tomcw
d3faae69fb
CardManager:
...
. added GetRef(), which can throw a std::runtime_error
. NB. dynamic_cast for a reference will throw a std::bad_cast error on failure
Added try/catch around main VM restart loop
. split the loop into ProcessCmdLine(), GetAppleWinVersion(), OneTimeInitialization() RepeatInitialization() & Shutdown()
. catch std::runtime_error & std::exception
2020-01-04 12:32:13 +00:00
tomcw
c280d43e75
DiskImageHelper: small refactor
2020-01-02 21:01:10 +00:00
tomcw
8ec8fa6c5b
Debugger: Correctly repaint AppleII screen when showing it from debugger. ( Fixed #746 )
2020-01-02 20:49:07 +00:00
tomcw
b37095715f
Save-state: refactor: added a LoadMemory() specialisation for vector<BYTE>
2019-12-31 12:52:47 +00:00
tomcw
a28803cbf9
WOZ: Support large tracks ( fixes #745 )
2019-12-31 12:07:45 +00:00
tomcw
183ec2bc8c
WOZ: Alternate fix for Wasteland ( #733 )
...
. apply extraLatchDelay on the last bitCell (if there's a latchDelay)
Debugger: Extended 'videoinfo' command to show cycles as absolute or relative.
2019-12-30 19:52:49 +00:00
tomcw
960af9bda0
MB: Moved MB_StartOfCpuExecute() to Snapshot_LoadState_v2(), since it's only needed there
2019-12-24 13:58:20 +00:00
tomcw
e03b68b7f0
MB: removed redundant g_n6522TimerPeriod variable
2019-12-24 13:19:35 +00:00
tomcw
8567f0a651
MB: include 1-cycle 65C02 opcodes
2019-12-24 12:51:43 +00:00
tomcw
75bc648f01
1.29.7.0: Updated version, History.txt and Help
2019-12-20 15:23:54 +00:00
tomcw
7eee2467c5
Disk2: DumpTrackWOZ() - extended to start each line with bitOffset
2019-12-20 12:49:02 +00:00
tomcw
418687e3d8
Debugger: 'cycles' now shows step-cycle-count (before was abs cumulative cycles) ( Fixes #737 )
...
And fixed single-step to only UpdateDisplay() once.
2019-12-20 09:15:24 +00:00
tomcw
82f6bf35a5
Debugger: GR/HGR/DGR/DHGR cmds should honour the MIXED mode. ( Fixes #740 )
2019-12-19 20:45:55 +00:00
TomCh
769d4c6927
Support 2nd Disk][ card and improved card management ( #726 ) (PR #741 )
...
Support 2nd Disk][ in slot-5, via command line:
- -s5 diskii
- -s5d1 \<imagefile\>
- -s5d2 \<imagefile\>
NB. there's currently no Configuration UI support, except the Drive icons' tooltips show what's in slot-5 & slot-6 (for drive-n). So there's no way to eject the disks or insert new disks. The use-case I'm supporting it Wasteland which just has the 4 disks in the 4 drives.
Improved card management:
- Added `class Card` (in Card.h) which all other cards (that exist as classes) derive from (eg. LC,SSC,Mouse,Disk2).
- Added `class CardManager` (in CardManager.cpp\h) which now manages the 8 slots (and aux slot).
- Added `class Disk2CardManager` (in Disk2CardManager.cpp\h) which provides methods for operations that act on all Disk2 instances at the same time.
- Currently limited to just 1x SSC and 1x Mouse card (why would you need more?). This simplifies things, meaning there's no need to have dedicated SSCManager / MouseCardManager objects.
- Currently the 2nd Disk2 card can only be put into slot-5. This limitation is just due to the complexity of the Configuration UI. Having a more general drop-down per slot UI would remove this limitation.
2019-12-19 19:42:30 +00:00
tomcw
d2010860ef
Debugger: refactor common code into GetTargets_IgnoreDirectJSRJMP()
2019-12-09 21:00:58 +00:00
tomcw
87677ed4c3
Debugger: In _6502_GetTargets() removed the bool bIgnoreJSRJMP parameter.
2019-12-09 20:42:16 +00:00
tomcw
f0e840f8e0
Debugger: Support BPMR for JMP (abs) and JMP (abs,x). ( #451 )
2019-12-09 19:13:24 +00:00
tomcw
b1316dc3da
Debugger: Fixed regression at prior commit dd274bc000
for bpm addr16 not triggering.
...
. Extended debugger regression tests to catch this (and test many other variants).
2019-12-09 16:27:13 +00:00
tomcw
ba7a4005b0
DiskII: fixes for Wasteland for both .nib & .woz images ( #733 )
2019-12-08 16:23:29 +00:00
Andrea
6af3b0b028
Color (RGB Monitor): speed up 'Pure CPU MHz (video update)'. (PR #730 )
2019-11-28 22:06:34 +00:00
tomcw
dd274bc000
Debugger: BPMR|W - ignore next opcode's fetch address as a candidate for memory trap address ( #451 )
2019-11-27 22:14:16 +00:00
tomcw
4d12a23c68
Make soundtype default to WAVE (not NONE)! ( #355 )
2019-11-24 15:57:33 +00:00
tomcw
7d38b1ba38
CPU save-state: added 'Defer IRQ By 1 Opcode' (v5) and comments for why the other state doesn't need saving
2019-11-18 15:08:59 +00:00
tomcw
b82de931a1
Fixed 6522 timer interrupt which was occurring 1 cycle late ( #711 )
2019-11-17 12:26:14 +00:00
TomCh
d1b595f7bd
Fix for "Mad Effect 1&2" demos (PR #725 )
...
. 6502 interrupt delays 1 opcode when interrupt occurs on last cycle of opcode (#724 ).
. Only 1-cycle delay for VF_TEXT & VF_MIXED mode changes (#656 ).
NB. Mad Effect 1 still has a bit of flicker on Space Invader (left edge)
2019-11-16 23:49:21 +00:00
tomcw
97e73c632d
Full-speed: new VideoGetVblBarEx() required when called from main loop
2019-11-11 19:55:46 +00:00
tomcw
3c6d5d1e76
Phasor: fixed noisy playback for AE's player. ( Fixes #659 )
2019-11-11 17:35:10 +00:00
Andrea
d6d76ae6bc
Memory fix for struct ImageInfo (PR #715 )
...
ImageInfo is not a POD and cannot simply be initialised with ZeroMemory()
. the std::string constructor must be called.
. ImageInfo: simplify code using new / delete vs VirtualAlloc
Also fixed mismatching new / delete [] reported by valgrind
2019-11-11 14:09:29 +00:00
tomcw
20b8515b7b
Full-speed: Only redraw video screen during VBl (support VBl in full-speed)
2019-11-10 23:52:29 +00:00
tomcw
d4e01643fa
Mockingboard: improved sound-buffer updating
...
. Changed to 6522.TIMER underflowing at 0x0000 -> 0xFFFF (#652 )
. Changed MB_Update() to be based on cycle delta (was TIMER1 interval)
. this improves support for small 6522.T1C interval
. removed MB_GetFramePeriod()
. removed overly-complex dual-timer support
. Replaced MB_EndOfVideoFrame() with MB_PeriodicUpdate()
2019-11-10 15:52:07 +00:00
tomcw
eb59c52dc4
Mockingboard: Fix initial fast (weird) music playback issue ( #711 )
2019-11-03 21:37:55 +00:00
tomcw
4ad0923399
Fix video tearing by only updating during the Apple II VBL ( #711 )
2019-11-03 15:05:28 +00:00
tomcw
d92eca5068
Cmd line: -m and -no-mb: fix crash
2019-11-03 14:23:47 +00:00
tomcw
5792107dce
Debugger: fixed help for 'videoinfo' cmd
2019-11-03 09:36:33 +00:00
TomCh
3d4691e9bd
ADTPro not working ( #707 ) (PR #714 )
...
. Wrap m_vbTxEmpty in a mutex
. Check WriteFile() result & log error
2019-11-02 19:53:00 +00:00
tomcw
5edd8ac32b
SSC: Get initial modem status when COM port is first opened
2019-10-27 16:53:24 +00:00
tomcw
d23d091caa
SSC: Support COM ports greater than 9 ( #707 )
2019-10-24 21:43:00 +01:00
Kelvin Lee
cb007df40b
Debugger: Symbol loading: Fix random crash upon start up. (PR #694 )
2019-10-25 04:25:07 +09:00
tomcw
07aeadc23f
Fixed out-of-bounds global buffer access
...
. detected using VS2019 asan support
2019-10-23 18:17:38 +01:00
TomCh
2f64795e2e
Debugger: BPMR & BPMW (PR #710 )
...
Extended BPM to also support BPMR and BPMW
Fixed BPM[R|W] 0:FFFF (ie. support a range of 0x10000)
2019-10-23 05:31:53 +09:00
tomcw
13588165ff
Debugger display: minor refactor
2019-10-20 21:17:40 +01:00
tomcw
52376fd664
Debugger display ( #666 , #702 ):
...
. Video-scanner: when invisible use yellow (instead of red) (fixes #666 )
. Soft-switches: row "80:" show a red 'x' when AltZP is set (#702 )
2019-10-20 11:30:31 +01:00
tomcw
3cd4ead90d
Disk: minor refactor
2019-10-13 16:01:00 +01:00
tomcw
1472f25bad
Save-state: show an error MsgBox if old HDD v1 save-state and PC is in $Cnss HDD firmware
2019-10-13 15:48:07 +01:00
tomcw
2a06f32bf6
Disk: Fixed write/disk-format issue (regression at 25496d3a52
)
2019-10-13 10:25:33 +01:00
tomcw
d39ba32e8a
LC: Support write-enabling LC via single 'INC abs,X' opcode for 6502 & 65C02. ( #404 , #700 )
2019-10-12 22:34:35 +01:00
tomcw
8a55e35e2d
LC: fixed INC to only write-enable LC for 65C02 ( #700 )
2019-10-12 18:17:11 +01:00
tomcw
df4ed7b964
Added new cmd-line switch: -model <apple2|apple2p|apple2e|apple2ee>. ( Fixes #689 )
2019-10-12 18:07:51 +01:00
tomcw
ad9dd28942
Added new cmd-line switch: -clock-multiplier.
2019-10-12 16:40:36 +01:00
tomcw
dc8a22169e
Added new cmd-line switch: -s7-empty-on-exit. ( Fixes #692 )
2019-10-12 16:01:55 +01:00
tomcw
75f6ab9e59
Debugger: added auto-run of 'DebuggerAutoRun.txt' on startup. ( #666 )
2019-10-11 21:24:01 +01:00
tomcw
319797df69
Debugger: Video-scanner info:
...
. moved vert,horz onto same row
. made hex & apple modes the default display config
. added 2nd line showing cycles
. moved mini-mem views over by 1 char
2019-10-10 22:21:25 +01:00
tomcw
9994635e13
LC: Support write-enabling LC via single 'INC abs' and similar RMW opcodes ( #700 )
2019-10-08 22:12:35 +01:00
tomcw
7265dee506
Fixes:
...
. loading disk state (v5)
. string append bug introduced in 'char* to std::string' PR #687
2019-10-06 16:39:43 +01:00
tomcw
31b78aa09a
HDD: Fixed not being able to enable HDDs - regression introduced at 506a52f359
2019-10-05 16:56:38 +01:00
tomcw
25496d3a52
WOZ: removed floppyWriteMode/FloppyLoadMode - use Sequencer Function instead
2019-10-05 09:53:02 +01:00
tomcw
d5236d5ee4
Merge branch 'master' of ssh://github.com/AppleWin/AppleWin
2019-09-30 22:14:06 +01:00
tomcw
31f7e7296b
WOZ: support Sequencer Function
2019-09-30 21:29:58 +01:00
tomcw
5e98140da1
WOZ:
...
. set m_headWindow = 0, after >50 bitcell gap
. bias fake bits to be ~30% chance of a 1 bit
Disk logging:
. added timestamps to I/O accesses
. DumpTrackWOZ() now outputs sync bits between nibbles
2019-09-30 20:39:47 +01:00
tomcw
f9a1ef04f7
Debugger: videoinfo cmd: return feedback on success
2019-09-23 01:50:18 +01:00
tomcw
604aff4bbb
Debugger: added help for videoinfo cmd
2019-09-22 16:53:38 +01:00
tomcw
b3eb789e03
Debugger: added BG_INFO_WATCH|ZEROPAGE enums
2019-09-22 15:59:19 +01:00
tomcw
b5b1deeead
Debugger: added & used consts for video-scanner info
2019-09-22 15:28:10 +01:00
tomcw
7261c79054
Debugger: minor refactor for VideoScanner info
2019-09-22 15:11:14 +01:00
tomcw
f84c985751
Debugger refactor: moved ConfigColorsReset() from Debug.cpp to Debugger_Color.cpp
2019-09-22 11:25:48 +01:00
tomcw
9a0617e889
Debugger: removed the now redundant Debug_UpdatePalette() func
2019-09-22 11:14:32 +01:00
tomcw
3b9dc8d0f7
Merge branch 'master' of ssh://github.com/AppleWin/AppleWin
2019-09-21 16:38:46 +01:00
tomcw
9ee9414bb6
Debugger: show video-scanner's h,v position (at the expense of losing 2 watches). ( #666 )
2019-09-21 16:37:45 +01:00
tomcw
e4f0a8b8d9
Debugger: fix crash in ParseSymbolTable() due to PR #687
2019-09-17 19:17:30 +01:00
tomcw
3264fd3ee9
Two fixes for the 'char* to std::string' PR #687
2019-09-15 21:26:40 +01:00
tomcw
660c75617b
Merge branch 'strings' of ssh://github.com/audetto/AppleWin into audetto-strings
2019-09-15 20:45:05 +01:00
tomcw
506a52f359
Refactor slots & allow empty slots for s1(printer), s6(disk2)
...
. NB. can't empty s3(uthernet) yet
2019-09-15 20:37:20 +01:00
tomcw
94556b5eaf
SSC: Added support for '-s2 empty' to remove SSC from slot-2 ( #668 )
2019-09-09 22:12:51 +01:00
Andrea Odetti
409634d65f
Use a more descriptive variable name.
...
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2019-09-08 21:33:26 +01:00
Andrea Odetti
bd201202cd
Some more std::string changes.
...
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2019-09-07 19:37:19 +01:00
Andrea Odetti
be476f9a9c
Fix a couple of issues around std::string.
...
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2019-09-07 18:51:07 +01:00
Andrea Odetti
dced4793b7
Next iteration of the string project.
...
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2019-09-07 10:16:51 +01:00
Andrea Odetti
f5f60310c1
More std::strings.
...
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2019-09-07 09:02:39 +01:00
tomcw
300494c470
Mockingboard: only do multi-TIMER1 support update when 6502 interrupts are enabled. ( #685 )
2019-09-06 19:59:28 +01:00
Andrea Odetti
d5890e8356
Replace some char * with std::string.
2019-09-06 17:34:25 +01:00
tomcw
ed9ae72778
Mockingboard: moved multi-TIMER1 support before the AY access. ( #685 )
2019-09-05 22:03:56 +01:00
tomcw
11323e2aba
Mockingboard: support multiple TIMER1 interrupts, with one for MB reg updates ( #685 )
2019-09-05 20:42:34 +01:00