Apple II HGR & DHGR Load/Save

This commit is contained in:
Thomas Bernard
2018-12-01 17:39:27 +01:00
committed by Adrien Destugues
parent f38b335b80
commit 1bffaacead
6 changed files with 310 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
*/
/* Grafx2 - The Ultimate 256-color bitmap paint program
Copyright 2018 Thomas Bernard
Copyright 2008 Adrien Destugues
Grafx2 is free software; you can redistribute it and/or
@@ -224,3 +225,21 @@ void MOTO_set_MO5_palette(T_Components * palette);
void MOTO_set_TO7_palette(T_Components * palette);
/** @}*/
/** @defgroup apple2 Apple II
*
* HGR and DHGR modes
* @{
*/
/**
* Set the 6 color Apple II HGR palette
*/
void HGR_set_palette(T_Components * palette);
/**
* Set the 16 color Apple II DHGR palette
*/
void DHGR_set_palette(T_Components * palette);
/** @}*/