1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 15:36:34 +00:00

Move n_mask_array to read-only storage. (#300)

This commit is contained in:
Bruce Mitchener 2021-01-26 12:10:04 +07:00 committed by GitHub
parent 5b0d3f8cb5
commit f75318cd8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,8 +175,10 @@ int dbgflag = 0;
int extended_frame; /*indicates if soft stack overflow */
int n_mask_array[16] = {1, 3, 7, 0xf, 0x1f, 0x3f, 0x7f, 0xff,
0x1ff, 0x3ff, 0x7ff, 0xfff, 0x1fff, 0x3fff, 0x7fff, 0xffff};
static const int n_mask_array[16] = {
1, 3, 7, 0xf, 0x1f, 0x3f, 0x7f, 0xff,
0x1ff, 0x3ff, 0x7ff, 0xfff, 0x1fff, 0x3fff, 0x7fff, 0xffff
};
extern int TIMER_INTERVAL;