To make a lookup table in c,I've tried like this
static code unsigned char T[]={0X01,0X02,0X03};
org 3000h db 01h,02h,03h
But is it possible to prepare one as we do in assembly. org 3000h db 01h,02h,03h Absolutely .h for C modules code unsigned char T[]; .a51 PUBLIC T ... org 3000h T: db 01h,02h,03h Erik