summaryrefslogtreecommitdiff
path: root/py/asmxtensa.h
AgeCommit message (Collapse)Author
2017-02-08py/asmxtensa.h: Explicitly cast args to 32-bits so left-shift is legal.Damien George
For archs that have 16-bit pointers, the asmxtensa.h file can give compiler warnings about left-shift being greater than the width of the type (due to the inline functions in this header file). Explicitly casting the constants to uint32_t stops these warnings.
2016-12-09py/asmxtensa: Add low-level Xtensa assembler.Damien George