@@ -627,34 +627,34 @@ pub static VIDEO_MODE: AtomicModeWrapper = AtomicModeWrapper::new(crate::common:
627627pub static VIDEO_PALETTE : [ AtomicU16 ; 256 ] = [
628628 // Index 000: 0x000 (Black)
629629 AtomicU16 :: new ( RGBColour :: from_12bit ( 0x0 , 0x0 , 0x0 ) . 0 ) ,
630- // Index 001: 0x800 (Dark Red)
631- AtomicU16 :: new ( RGBColour :: from_12bit ( 0x8 , 0x0 , 0x0 ) . 0 ) ,
632- // Index 002: 0x080 (Dark Green)
633- AtomicU16 :: new ( RGBColour :: from_12bit ( 0x0 , 0x8 , 0x0 ) . 0 ) ,
634- // Index 003: 0x880 (Orange)
635- AtomicU16 :: new ( RGBColour :: from_12bit ( 0x8 , 0x8 , 0x0 ) . 0 ) ,
636- // Index 004: 0x008 (Blue)
637- AtomicU16 :: new ( RGBColour :: from_12bit ( 0x0 , 0x0 , 0x8 ) . 0 ) ,
638- // Index 005: 0x808 (Dark Magenta)
639- AtomicU16 :: new ( RGBColour :: from_12bit ( 0x8 , 0x0 , 0x8 ) . 0 ) ,
640- // Index 006: 0x088 (Dark Cyan)
641- AtomicU16 :: new ( RGBColour :: from_12bit ( 0x0 , 0x8 , 0x8 ) . 0 ) ,
642- // Index 007: 0xcc0 (Yellow)
643- AtomicU16 :: new ( RGBColour :: from_12bit ( 0xc , 0xc , 0x0 ) . 0 ) ,
644- // Index 008: 0x888 (Grey)
645- AtomicU16 :: new ( RGBColour :: from_12bit ( 0x8 , 0x8 , 0x8 ) . 0 ) ,
646- // Index 009: 0xf00 (Bright Red)
647- AtomicU16 :: new ( RGBColour :: from_12bit ( 0xf , 0x0 , 0x0 ) . 0 ) ,
648- // Index 010: 0x0f0 (Bright Green)
649- AtomicU16 :: new ( RGBColour :: from_12bit ( 0x0 , 0xf , 0x0 ) . 0 ) ,
650- // Index 011: 0xff0 (Bright Yellow)
651- AtomicU16 :: new ( RGBColour :: from_12bit ( 0xf , 0xf , 0x0 ) . 0 ) ,
652- // Index 012: 0x00f (Bright Blue)
630+ // Index 001: 0x00a (Blue)
631+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0x0 , 0x0 , 0xa ) . 0 ) ,
632+ // Index 002: 0x0a0 (Green)
633+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0x0 , 0xa , 0x0 ) . 0 ) ,
634+ // Index 003: 0x0aa (Cyan)
635+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0x0 , 0xa , 0xa ) . 0 ) ,
636+ // Index 004: 0xa00 (Red)
637+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0xa , 0x0 , 0x0 ) . 0 ) ,
638+ // Index 005: 0xa0a (Magenta)
639+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0xa , 0x0 , 0xa ) . 0 ) ,
640+ // Index 006: 0xaa0 (Brown)
641+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0xa , 0xa , 0x0 ) . 0 ) ,
642+ // Index 007: 0xaaa (Light Gray)
643+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0xa , 0xa , 0xa ) . 0 ) ,
644+ // Index 008: 0x666 (Dark Gray)
645+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0x6 , 0x6 , 0x6 ) . 0 ) ,
646+ // Index 009: 0x00f (Light Blue)
653647 AtomicU16 :: new ( RGBColour :: from_12bit ( 0x0 , 0x0 , 0xf ) . 0 ) ,
654- // Index 013: 0xf0f (Bright Magenta )
655- AtomicU16 :: new ( RGBColour :: from_12bit ( 0xf , 0x0 , 0xf ) . 0 ) ,
656- // Index 014 : 0x0ff (Bright Cyan)
648+ // Index 010: 0x0f0 (Light Green )
649+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0x0 , 0xf , 0x0 ) . 0 ) ,
650+ // Index 011 : 0x0ff (Light Cyan)
657651 AtomicU16 :: new ( RGBColour :: from_12bit ( 0x0 , 0xf , 0xf ) . 0 ) ,
652+ // Index 012: 0xf00 (Light Red)
653+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0xf , 0x0 , 0x0 ) . 0 ) ,
654+ // Index 013: 0xf0f (Pink)
655+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0xf , 0x0 , 0xf ) . 0 ) ,
656+ // Index 014: 0xff0 (Yellow)
657+ AtomicU16 :: new ( RGBColour :: from_12bit ( 0xf , 0xf , 0x0 ) . 0 ) ,
658658 // Index 015: 0xfff (White)
659659 AtomicU16 :: new ( RGBColour :: from_12bit ( 0xf , 0xf , 0xf ) . 0 ) ,
660660 // Index 016: 0x003
0 commit comments