banked.c (121B)
1#pragma bank 3 2 3#include <stdint.h> 4 5uint16_t banked_func(uint8_t be, uint8_t ef) __banked { 6 return ((be << 8) | ef); 7}