Share via


SHx Microprocessor (Windows CE 5.0)

Send Feedback

All SHx interrupt service routines (ISRs) can be written in C. Any volatile registers can be used in accordance with the C calling convention without using save/restore. Specifically, an SHx ISR can use registers r0 through r7.

Use the following design principals when creating an OAL for an SHx microprocessor:

  • The ISR must return by means of rts, and cannot access any addresses through the translation look-aside buffer (TLB).

  • Implement the nonmaskable-interrupt ISR, OEMNMI.

  • OEMInit must register OEMNMI.

  • You can define the variable OEMExtraCCR to configure the cache control register. The default value is 0.

    Note   To place an SH4 device in write-through mode, reset the cache control register (CCR) to write-through mode in OEMInit.

  • The scheduler timer code is implemented in the Ktimer.c and Timer0.src files in the OAL. Sample versions of these files are located in %_WINCEROOT%\Platform\Aspen\Kernel\Hal\SH.

  • Nested interrupts.

    The SHx kernel utilizes a structure that provides the kernel with information about which nested interrupts are masked while the current interrupt is being handled. To gain access to this structure, the IntrPrio global variable must be declared in the OAL.

See Also

How to Develop an OEM Adaptation Layer | Microprocessor-specific Issues

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.