mirror of
https://github.com/mupen64plus/mupen64plus-oldsvn.git
synced 2025-04-02 10:52:35 -04:00
91 lines
3.3 KiB
C
91 lines
3.3 KiB
C
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Mupen64plus - regRI.c *
|
|
* Mupen64Plus homepage: http://code.google.com/p/mupen64plus/ *
|
|
* Copyright (C) 2002 DavFr *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program; if not, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "regRI.h"
|
|
|
|
static GtkWidget *clRegRI;
|
|
|
|
// We keep a copy of values displayed to screen.
|
|
// Screen is only updated when values REALLY changed, and display need an
|
|
// update. It makes things go really faster :)
|
|
static uint32 gui_fantom_reg_RI[5];
|
|
|
|
static char *mnemonicRI[]=
|
|
{
|
|
"RI_MODE_REG", "RI_CONFIG_REG",
|
|
"RI_CURRENT_LOAD_REG", "RI_SELECT_REG",
|
|
"RI_REFRESH_REG",
|
|
};
|
|
|
|
static unsigned int *regptrsRI[] = {
|
|
&ri_register.ri_mode,
|
|
&ri_register.ri_config,
|
|
&ri_register.ri_current_load,
|
|
&ri_register.ri_select,
|
|
&ri_register.ri_refresh
|
|
};
|
|
|
|
//]=-=-=-=-=-=-=-=[ Initialisation of RDRAM Interface Display ]=-=-=-=-=-=-=-=[
|
|
|
|
void init_regRI()
|
|
{
|
|
int i;
|
|
|
|
frRegRI = gtk_frame_new("RDRAM Interface");
|
|
|
|
//=== Creation of Registers Value Display ==========/
|
|
clRegRI = (GtkWidget *) init_hwreg_clist(5, mnemonicRI);
|
|
gtk_container_add(GTK_CONTAINER(frRegRI), clRegRI);
|
|
gtk_clist_set_selection_mode(GTK_CLIST(clRegRI), GTK_SELECTION_SINGLE);
|
|
|
|
//=== Fantom Registers Initialisation ============/
|
|
for( i=0; i<5; i++)
|
|
{
|
|
gui_fantom_reg_RI[i] = 0x12345678;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
//]=-=-=-=-=-=-=-=-=-=[ Mise-a-jour RDRAM Interface Display ]=-=-=-=-=-=-=-=-=-[
|
|
|
|
void update_regRI()
|
|
{
|
|
char txt[24];
|
|
int i;
|
|
|
|
gtk_clist_freeze(GTK_CLIST(clRegRI));
|
|
|
|
for (i=0; i<5; i++) {
|
|
if (gui_fantom_reg_RI[i] != (uint32)(*regptrsRI[i])) {
|
|
gui_fantom_reg_RI[i] = (uint32)(*regptrsRI[i]);
|
|
sprintf(txt, "%.8X", *regptrsRI[i]);
|
|
gtk_clist_set_text(GTK_CLIST(clRegRI), i, 1, txt);
|
|
gtk_clist_set_background(GTK_CLIST(clRegRI), i, &color_modif);
|
|
} else {
|
|
gtk_clist_set_background(GTK_CLIST(clRegRI), i, &color_ident);
|
|
}
|
|
}
|
|
|
|
gtk_clist_thaw(GTK_CLIST(clRegRI));
|
|
}
|
|
|