cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

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}