Disables the ENTRY code generation.
#pragma NO_ENTRY
This pragma disables the ENTRY code generation (the ENTRY code is responsible with managing the received parameters and allocating stack space for the current function). The ENTRY code generation can be disabled if the parameters and stack space are handled explicitly from inline-assembly code or if they are not required at all in the function.
This pragma should be used in pair with the NO_EXIT pragma since the stack frame can get corrupted otherwise