OpenCores
URL https://opencores.org/ocsvn/thor/thor/trunk

Subversion Repositories thor

[/] [thor/] [trunk/] [FT64v5/] [software/] [AS64/] [source/] [types.h] - Rev 48

Go to most recent revision | Compare with Previous | Blame | View Log

#ifndef _TYPES_H
#define _TYPES_H
 
class Arg
{
public:
	char text[120];
public:
	void Get();
	void Clear();
};
 
class Arglist
{
public:
	int count;
	Arg args[10];
public:
	void Get();
};
 
class Macro
{
public:
	static int inst;
	char *body;	// template for macro body
public:
	char *SubArgs(Arglist *args);
	char *GetArg();
	char *GetBody(char *parmlist[]);
	int GetParmList(char *[]);
	void Substitute(char *, int);
};
 
#endif
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.