/*
* Return the address of object on HP stack.
* Copyright (C) 1994 Alex T Ramos. All rights reserved. No warranty.
*
*/
#include <hp48/main.h>
int main(int argc, char *argv[])
{
hp_object *top = _STACK(0);
return (int)top & 0xFFFFF;
}