~ubuntu-branches/ubuntu/utopic/vice/utopic-proposed

« back to all changes in this revision

Viewing changes to src/arch/beos/petui.cc

  • Committer: Package Import Robot
  • Author(s): Logan Rosen
  • Date: 2014-05-10 21:08:23 UTC
  • mfrom: (17.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140510210823-v5aojvy1pv1sg132
Tags: 2.4.dfsg+2.4.6-1ubuntu1
Use autotools-dev to update config.{sub,guess} for new arches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
#include <string.h>
40
40
#endif
41
41
 
 
42
#include "ui_file.h"
 
43
 
42
44
extern "C" {
43
45
#include "archdep.h"
44
46
#include "constants.h"
46
48
#include "resources.h"
47
49
#include "types.h"
48
50
#include "ui.h"
49
 
#include "ui_file.h"
50
51
#include "ui_pet.h"
51
52
#include "ui_sidcart.h"
52
53
#include "util.h"
60
61
    { "CRTCVideoCache", MENU_TOGGLE_VIDEOCACHE },
61
62
    { "PETREU", MENU_TOGGLE_PETREU },
62
63
    { "PETDWW", MENU_TOGGLE_PETDWW },
 
64
    { "PETHRE", MENU_TOGGLE_PETHRE },
63
65
    { "UserportDAC", MENU_TOGGLE_PET_USERPORT_DAC },
64
66
    { NULL, 0 }
65
67
};
84
86
    {NULL, NULL}
85
87
};
86
88
 
87
 
static char *petsidcartaddresspair[] = { "$8F00", "$E900" };
88
 
static char *petsidcartclockpair[] = { "C64", "PET" };
 
89
static const char *petsidcartaddresspair[] = { "$8F00", "$E900" };
 
90
static const char *petsidcartclockpair[] = { "C64", "PET" };
89
91
 
90
92
void pet_ui_specific(void *msg, void *window)
91
93
{
107
109
    }
108
110
}
109
111
 
110
 
extern "C" {
111
112
int petui_init(void)
112
113
{
113
114
    ui_register_machine_specific(pet_ui_specific);
120
121
void petui_shutdown(void)
121
122
{
122
123
}
123
 
 
124
 
}