apple2ix/src/video/ntsc.h
Aaron Culliney 80f741f225 Ensure correct pixel adjustment to framebuffer (over)-draw
- Ensures correct starting position for all modes
    - Renders the last 4 samples into the right side overdraw of framebuffer for NTSC modes
2018-11-11 12:17:23 -08:00

23 lines
456 B
C

/*
* Apple // emulator for *ix
*
* This software package is subject to the GNU General Public License
* version 3 or later (your choice) as published by the Free Software
* Foundation.
*
* Copyright 2018 Aaron Culliney
*
*/
#ifndef A2_NTSC_H
#define A2_NTSC_H
#include "common.h"
void ntsc_plotBits(color_mode_t mode, uint16_t bits, PIXEL_TYPE *fb_ptr);
void ntsc_flushScanline(color_mode_t mode, PIXEL_TYPE *fb_ptr);
#endif /* A2_NTSC_H */