Subversion Repositories freemyipod

Rev

Rev 258 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 258 Rev 259
Line 173... Line 173...
173
    else timervector[timer] = unhandled_irq;
173
    else timervector[timer] = unhandled_irq;
174
}
174
}
175
 
175
 
176
void int_dma_set_handler(int channel, void* handler)
176
void int_dma_set_handler(int channel, void* handler)
177
{
177
{
178
    void(channel);
178
    (void)channel;
179
    void(handler);
179
    (void)handler;
180
}
180
}
181
 
181
 
182
void interrupt_init(void)
182
void interrupt_init(void)
183
{
183
{
184
    VIC0INTENABLE = 1 << IRQ_TIMER;
184
    VIC0INTENABLE = 1 << IRQ_TIMER;