8259-Problem(My ISR is not called)

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Adek336

Re:8259-Problem(My ISR is not called)

Post by Adek336 »

perhaps you pop in he wrong order:

push es
push ds

pop es
pop ds

or you don't have enough stack space
User avatar
Pype.Clicker
Member
Member
Posts: 5964
Joined: Wed Oct 18, 2006 2:31 am
Location: In a galaxy, far, far away
Contact:

Re:8259-Problem(My ISR is not called)

Post by Pype.Clicker »

Adek336 wrote: perhaps you pop in he wrong order:

push es
push ds

pop es
pop ds

or you don't have enough stack space
silliest suggestion ever heard. Have you ever read about stacks and LIFO (last in first out) model ?? the last thing you PUSH is the first you'll POP.
Post Reply