/* c16.c (msc) */

short add (short x, short y)
{
  _asm mov ax, 0
  _asm mov es, ax
  return (x + y);
}
