1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-29 12:50:28 +00:00

Add mention of text mode.

This commit is contained in:
Thomas Harte 2023-04-23 22:38:42 -04:00
parent efa7d659bc
commit dbddcd109c

View File

@ -162,8 +162,9 @@ template <Personality personality, typename Enable = void> struct LineLayout;
// [EndOfRightBorder, <end of line>] blank // [EndOfRightBorder, <end of line>] blank
// //
// ... with minor caveats: // ... with minor caveats:
// * horizontal adjust on the Yamaha VDPs is applied to EndOfLeftBorder and EndOfPixels; and // * horizontal adjust on the Yamaha VDPs is applied to EndOfLeftBorder and EndOfPixels;
// * the Sega VDPs may programatically extend the left border. // * the Sega VDPs may programatically extend the left border; and
// * text mode on all VDPs adjusts border width.
template <Personality personality> struct LineLayout<personality, std::enable_if_t<is_classic_vdp(personality)>> { template <Personality personality> struct LineLayout<personality, std::enable_if_t<is_classic_vdp(personality)>> {
constexpr static int EndOfSync = 26; constexpr static int EndOfSync = 26;