URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Go to most recent revision |
Only display areas with differences |
Details |
Blame |
View Log
Rev 158 |
Rev 816 |
#include
|
#include
|
|
|
extern "C" void print (char *, ...);
|
extern "C" void print (char *, ...);
|
|
|
class foo
|
class foo
|
{
|
{
|
public:
|
public:
|
foo () { print ("ctor\n"); }
|
foo () { print ("ctor\n"); }
|
~foo () { print ("dtor\n"); }
|
~foo () { print ("dtor\n"); }
|
};
|
};
|
|
|
foo x;
|
foo x;
|
|
|
main ()
|
main ()
|
{
|
{
|
outbyte ('&');
|
outbyte ('&');
|
outbyte ('@');
|
outbyte ('@');
|
outbyte ('$');
|
outbyte ('$');
|
outbyte ('%');
|
outbyte ('%');
|
print ("FooBar\r\n");
|
print ("FooBar\r\n");
|
|
|
/* whew, we made it */
|
/* whew, we made it */
|
print ("\r\nDone...\r\n");
|
print ("\r\nDone...\r\n");
|
/* fflush(stdout); */
|
/* fflush(stdout); */
|
}
|
}
|
|
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.