URL
https://opencores.org/ocsvn/copyblaze/copyblaze/trunk
Subversion Repositories copyblaze
[/] [copyblaze/] [trunk/] [copyblaze/] [sw/] [code/] [pbcc/] [test9/] [test9.c] - Rev 69
Go to most recent revision | Compare with Previous | Blame | View Log
// test bitových operací - problem with NOT_OP (pBlazeIDE) /* link the C libarary */ //#pragma library c void main() { volatile char c = 1; c = !c; c = 0; c = !c; c = c && c; c = c || c; c = 29; c = c % 13; }
Go to most recent revision | Compare with Previous | Blame | View Log