disabled debug output. This is version 0.88, "official" release

This commit is contained in:
Markus Fröschle
2016-08-14 08:16:20 +00:00
parent b2015265e2
commit 9653fa601e
2 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@
#include "interrupts.h"
#include "wait.h"
#define DEBUG_PCI
// #define DEBUG_PCI
#ifdef DEBUG_PCI
#define dbg(format, arg...) do { xprintf("DEBUG: %s(): " format, __FUNCTION__, ##arg); } while (0)
#else

View File

@@ -27,8 +27,8 @@ int i;
void do_tests(void)
{
volatile unsigned long *t1 = (volatile unsigned long *) 0xf0000000;
volatile unsigned short *t2 = (volatile unsigned short *) 0xf0000004;
volatile unsigned short *t3 = (volatile unsigned short *) 0xf0000006;
volatile unsigned short *t2 = (volatile unsigned short *) 0xf0000000;
volatile unsigned short *t3 = (volatile unsigned short *) 0xf0000002;
long value = 0;
while (1)