Subversion Repositories HelenOS

Rev

Rev 3902 | Rev 3956 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3902 Rev 3929
Line 147... Line 147...
147
void cpu_halt(void);
147
void cpu_halt(void);
148
void asm_delay_loop(uint32_t t);
148
void asm_delay_loop(uint32_t t);
149
 
149
 
150
extern void userspace_asm(uintptr_t uspace_uarg, uintptr_t stack, uintptr_t entry);
150
extern void userspace_asm(uintptr_t uspace_uarg, uintptr_t stack, uintptr_t entry);
151
 
151
 
152
static inline void pio_write_8(ioport_t port, uint8_t v)
152
static inline void pio_write_8(ioport8_t *port, uint8_t v)
153
{
153
{
154
    /* XXX */
154
    /* XXX */
155
}
155
}
156
 
156
 
157
static inline uint8_t pio_read_8(ioport_t port)
157
static inline uint8_t pio_read_8(ioport8_t *port)
158
{
158
{
159
    return 0;   /* XXX */
159
    return 0;   /* XXX */
160
}
160
}
161
 
161
 
162
#endif
162
#endif