mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-02 06:41:21 +00:00
Wholesale removal of deprecated register attribute from all source files
This commit is contained in:
@@ -155,7 +155,7 @@ LispPTR N_OP_pilotbitblt(LispPTR pilot_bt_tbl, LispPTR tos)
|
||||
/* for MONO only */
|
||||
int cursorin(DLword addrhi, DLword addrlo, int w, int h, int backward)
|
||||
{
|
||||
register int x, y;
|
||||
int x, y;
|
||||
if (addrhi == DISPLAY_HI) {
|
||||
y = addrlo / DisplayRasterWidth;
|
||||
x = (addrlo - y * DisplayRasterWidth) << 4;
|
||||
@@ -177,8 +177,8 @@ int cursorin(DLword addrhi, DLword addrlo, int w, int h, int backward)
|
||||
/* for COLOR & MONO */
|
||||
int cursorin(DLword addrhi, DLword addrlo, int w, int h, int backward)
|
||||
{
|
||||
register int x, y;
|
||||
register DLword *base68k;
|
||||
int x, y;
|
||||
DLword *base68k;
|
||||
extern int MonoOrColor;
|
||||
extern int displaywidth;
|
||||
extern DLword *ColorDisplayRegion68k;
|
||||
|
||||
Reference in New Issue
Block a user