the structure of context in java card
Posted: Mon Jun 27, 2016 2:57 am
Hi everybody in here!
I am designing all the structures in java card, which include Frame, Context.. But I didn't know Context structure. Does anyone know the structure of context in javacard?
For example, the structure of Frame is
I am designing all the structures in java card, which include Frame, Context.. But I didn't know Context structure. Does anyone know the structure of context in javacard?
For example, the structure of Frame is
typedef struct frame {
u1 last_pc;
u2 *lvars;
u2 *ostack;
method_info *mi;
class_info *ci;
struct frame *prev;
} Frame;