Thomas Harte
|
c750bdafd5
|
Switch to a saturating conversion.
|
2021-11-18 18:01:30 -05:00 |
|
Thomas Harte
|
6216d53b1a
|
Adds a faster flushing HalfCycles -> Cycles conversion.
|
2021-07-23 20:07:57 -04:00 |
|
Thomas Harte
|
d1b89392a2
|
Improve exposiiton.
|
2021-06-24 22:18:31 -04:00 |
|
Thomas Harte
|
1266bbb224
|
Makes the TMS a sequence-point-generating JustInTimeActor.
|
2021-04-05 21:02:37 -04:00 |
|
Thomas Harte
|
240d3c482b
|
Removes redundant constructors.
|
2020-06-19 23:26:22 -04:00 |
|
Thomas Harte
|
b98703bd5b
|
Corrects lack of const .
|
2019-11-18 22:11:52 -05:00 |
|
Thomas Harte
|
1c154131f9
|
Expands size of storage in Cycles/HalfCycles; adjusts widely to compensate.
|
2019-10-29 22:36:29 -04:00 |
|
Thomas Harte
|
c4ef33b23f
|
JustInTimeActors can now specify a clock divider.
|
2019-10-20 20:38:55 -04:00 |
|
Thomas Harte
|
d8a41575c8
|
Picks a better function name.
|
2019-07-30 10:54:56 -04:00 |
|
Thomas Harte
|
0521de668a
|
Omits redundant qualifier.
This code can't be anything but `inline`.
|
2019-07-29 23:07:02 -04:00 |
|
Thomas Harte
|
12441bddab
|
Tries operator overloading as a workaround.
|
2019-07-29 23:04:02 -04:00 |
|
Thomas Harte
|
bc25c52683
|
Although duplicative, resolves function redefinition.
|
2019-07-29 22:49:02 -04:00 |
|
Thomas Harte
|
2f90ed1f32
|
Attempts to reformulate into valid C++.
|
2019-07-29 21:23:37 -04:00 |
|
Thomas Harte
|
a43ada82b2
|
Experiments with a JustInTimeActor in the Master System.
|
2019-07-29 15:38:41 -04:00 |
|
Thomas Harte
|
5149f290d0
|
Starts trying to formalise just-in-time execution.
Which, at least, simplifies Cycle/HalfCycle to Cycle run_for usage via template.
|
2019-07-28 21:49:54 -04:00 |
|
Thomas Harte
|
81b57ecf7c
|
Adds noexcept .
|
2019-07-26 22:18:40 -04:00 |
|
Thomas Harte
|
33e2721eb2
|
Fully embraces forceinline .
|
2019-07-08 21:11:31 -04:00 |
|
Thomas Harte
|
dd963d6161
|
Eliminates call/return cost on WrappedInts.
|
2019-07-07 14:12:20 -04:00 |
|
Thomas Harte
|
a99ebda513
|
Takes a first shot at (inverted) Mac video output.
|
2019-05-04 22:27:58 -04:00 |
|
Thomas Harte
|
abca38a548
|
Makes an initial removal of PCMPatchedTrack . Farewell, old friend.
|
2018-07-01 22:49:57 -04:00 |
|
Thomas Harte
|
6c16754a6b
|
Strips further improper constexpr s.
|
2018-05-28 17:48:55 -04:00 |
|
Thomas Harte
|
ad5afe21ee
|
Removes constexpr from things which are not const. Duh.
|
2018-05-28 17:28:57 -04:00 |
|
Thomas Harte
|
8a566cc1dd
|
Experimentally goes to town on constexpr .
|
2018-05-28 17:20:11 -04:00 |
|
Thomas Harte
|
5d6b5d9f10
|
Eliminates all emdashes in cross-platform code.
|
2018-05-13 15:34:31 -04:00 |
|
Thomas Harte
|
0b771ce61a
|
Removes all instances of the copyright symbol.
|
2018-05-13 15:19:52 -04:00 |
|
Thomas Harte
|
fe7fc6b22e
|
Enables AY output from the MSX.
|
2017-12-02 16:30:43 -05:00 |
|
Thomas Harte
|
2c1e99858b
|
Fixed HalfCycles to allow conversion from Cycles without relying on undefined behaviour.
Specifically: left shifting a negative number.
|
2017-10-17 22:22:51 -04:00 |
|
Thomas Harte
|
f7e66dea61
|
Added a compound divide and convert.
|
2017-08-02 07:21:21 -04:00 |
|
Thomas Harte
|
9c04d851e4
|
Added the basics necessary to get the CPU ticking over, at a nominal 4Mhz but with the wait states that I currently believe to be accurate.
|
2017-07-31 07:29:50 -04:00 |
|
Thomas Harte
|
4abd62e62b
|
Standardises on const [Half]Cycles as the thing called and returned, rather than const [Half]Cycles & as it's explicitly defined to be only one int in size, so using a reference is overly weighty.
|
2017-07-27 22:05:29 -04:00 |
|
Thomas Harte
|
968d2bb8ba
|
Brought Typer into the new run_for orthodoxy, making it easier to clock consistently regardless of unit. Which necessitated adding a negative operator for WrappedInts.
|
2017-07-27 21:53:45 -04:00 |
|
Thomas Harte
|
9ef232157b
|
Revoked the operator bool() on WrappedInt as providing an indirect means for implicit but incorrect assignment to unwrapped ints. Got explicit about run_for intention and simplified HalfClockReceiver slightly by building a lossy and a flushing conversion to Cycles into HalfCycles. Adapted the all-RAM Z80 properly to return HalfCycles.
|
2017-07-27 21:38:50 -04:00 |
|
Thomas Harte
|
6f8b558724
|
Revoked dead #include.
|
2017-07-27 07:41:59 -04:00 |
|
Thomas Harte
|
8361756dc4
|
Switched definitively to the works-for-now approach of requiring an explicit opt-in where somebody wants to clock a whole-cycle receiver from a half-cycle clock.
|
2017-07-27 07:40:02 -04:00 |
|
Thomas Harte
|
75d67ee770
|
Relocated ClockReceiver.hpp as it's a dependency for parts of the static analyser, and therefore needs to be distinct from the actual emulation parts.
|
2017-07-25 20:20:55 -04:00 |
|