summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/port80.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/port80.c b/common/port80.c
index 0523fe35b1..fb2a8160bc 100644
--- a/common/port80.c
+++ b/common/port80.c
@@ -19,10 +19,10 @@
#define HISTORY_LEN 128
#define PORT80_POLL_PERIOD MSEC
-static uint16_t history[HISTORY_LEN];
-static int writes; /* Number of port 80 writes so far */
+static uint16_t __bss_slow history[HISTORY_LEN];
+static int __bss_slow writes; /* Number of port 80 writes so far */
static int last_boot; /* Last code from previous boot */
-static int scroll;
+static int __bss_slow scroll;
static int print_in_int = 1;
void port_80_write(int data)