Rev 3902 | Rev 3949 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3902 | Rev 3929 | ||
---|---|---|---|
Line 44... | Line 44... | ||
44 | /** No such instruction on ARM to sleep CPU. */ |
44 | /** No such instruction on ARM to sleep CPU. */ |
45 | static inline void cpu_sleep(void) |
45 | static inline void cpu_sleep(void) |
46 | { |
46 | { |
47 | } |
47 | } |
48 | 48 | ||
49 | static inline void pio_write_8(ioport_t port, uint8_t v) |
49 | static inline void pio_write_8(ioport8_t *port, uint8_t v) |
50 | { |
50 | { |
51 | /* XXX */ |
51 | /* XXX */ |
52 | } |
52 | } |
53 | 53 | ||
54 | static inline uint8_t pio_read_8(ioport_t port) |
54 | static inline uint8_t pio_read_8(ioport8_t *port) |
55 | { |
55 | { |
56 | return 0; /* XXX */ |
56 | return 0; /* XXX */ |
57 | } |
57 | } |
58 | 58 | ||
59 | /** Return base address of current stack. |
59 | /** Return base address of current stack. |