mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-25 23:24:15 +01:00
20 lines
422 B
C
20 lines
422 B
C
#ifndef BTLDR_H__
|
|
#define BTLDR_H__
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
typedef volatile uint8_t * io8_t;
|
|
typedef volatile uint32_t * io32_t;
|
|
|
|
#define RAM (*((io8_t) 0x00000000))
|
|
#define USB_SR (*((io8_t) 0x50000000))
|
|
#define USB_DR (*((io8_t) 0x50000004))
|
|
|
|
#define USB_SR_RXNE (1 << 0)
|
|
#define USB_SR_TXE (1 << 1)
|
|
|
|
|
|
#endif
|