mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-15 07:41:45 +00:00
9fcded3d23
advantage of the fact that we have to have a permanently-resident block in base memory.
33 lines
522 B
C
33 lines
522 B
C
#ifndef ETHERBOOT_OSDEP_H
|
|
#define ETHERBOOT_OSDEP_H
|
|
|
|
/* Optimization barrier */
|
|
/* The "volatile" is due to gcc bugs */
|
|
#define barrier() __asm__ __volatile__("": : :"memory")
|
|
|
|
#include "stdint.h"
|
|
#include "limits.h"
|
|
#include "string.h"
|
|
#include "io.h"
|
|
#include "endian.h"
|
|
#include "byteswap.h"
|
|
#include "setjmp.h"
|
|
#include "latch.h"
|
|
|
|
typedef unsigned long Address;
|
|
|
|
/* ANSI prototyping macro */
|
|
#ifdef __STDC__
|
|
#define P(x) x
|
|
#else
|
|
#define P(x) ()
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/*
|
|
* Local variables:
|
|
* c-basic-offset: 8
|
|
* End:
|
|
*/
|