Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
115 views

68040 Takes Wrong Branch of If Else

Any good 68k assembly programmers out there?? I'm using a commercial Green Hills compiler for a Motorola 68040 and I'm seeing some very strange behavior from the code. Sometimes, the code will do an ...
2
votes
1answer
100 views

Call Int 13h in a ISR

I have written a ISR for int 9h by assembly in Real Mode. In this ISR, I call INT 13h, AH=0x02 for writing some data on Hard Disk. But data aren't written on Hard Disk. Also int 13h, ah=0x02 doesn't ...
2
votes
2answers
161 views

How to save the registers on x86_64 for an interrupt service routine?

I am looking at some old code from a school project, and in trying to compile it on my laptop I ran into some problems. It was originally written for an old 32 bit version of gcc. Anyway I was trying ...
2
votes
3answers
1k views

Can breakpoints be used in in ISRs?

Can breakpoints be used in interrupt service routines (ISRs)?
1
vote
1answer
71 views

Porting driver from PPC2003 to WM6: ISR not called

I'm trying to port the driver I've developed for a custom device that uses the CF port of the iPAQ hx4700. The target is the new iPAQ 210 that runs Windows Mobile 6. Although WM6 (and Windows CE 5.0) ...
0
votes
1answer
47 views

Circular-buffer used in ISR, declared volatile, gives error. Why ? How to fix this?

There is an Arduino library called 'ByteBuffer' (found here), which is a circular buffer implementation. I modified it slightly (calling it 'ByteBufferPro'), by chopping off support for all non-byte ...
0
votes
2answers
77 views

Interrupt Controller's In-Service Register bits when a non-maskable interrupt occurs

I have the following question (regarding x86 architecture): What happens when a non-maskable interrupt (e.g. NMI) interrupts a maskable interrupt which is in progress? Does the corresponding ISR ...
0
votes
1answer
426 views

How to register a function in a driver code as its ISR

Following the feedback i got from: http://stackoverflow.com/questions/2683682/new-to-linux-kernel-driver-development/2683819 In linux-kernel (v 2.6.32), I have written a driver (.c file) by comparing ...
0
votes
1answer
950 views

How CPU finds ISR and distinguishes between devices

I should first share all what I know - and that is complete chaos. There are several different questions on the topic, so please don't get irritated :). 1) To find an ISR, CPU is provided with a ...