//#include "16f84"
chip "16f84";

//nop;


// define a temp area
area R0x0c`0x20, temp;		// 32 bytes

code boot(base = P0)		// fixed address
{
  alloc temp, { i=byte, j=byte };

  print i,j;
  {
    alloc temp, { k=byte };
    print k;
  }
  {
    alloc temp, { k=byte };
    print k;
  }
  alloc temp, { l=byte`2 };
  print l;
  print temp;

  print bytes(temp);
  print bytes(@("temp"));
  nop;
}


