home *** CD-ROM | disk | FTP | other *** search
- /* ---------------------------------------------------------------------- */
- /* Copyright (C) 1991 by Natürlich! */
- /* This file is copyrighted! */
- /* Refer to the documentation for details. */
- /* ---------------------------------------------------------------------- */
- #define LINKER 1
- #include "symbols.c"
- #include <stdio.h>
-
- void show_values()
- {
- register int i, k,
- j = 0;
- register label huge *p;
-
- ENTER("show_values");
- for( k = 0; k != 2; k++)
- for( i = 0; i != SEP;)
- if( p = k ? h_macro[ i++] : h_global[i++])
- do
- {
- if( j++ == 4)
- {
- j = 1;
- putchar( '\n');
- }
- printf( "%-8s = $%04X ", p->name, p->val);
- }
- while( p = p->next);
- putchar( '\n');
- LEAVE();
- }
-
-