repo.or.cz
/
rbx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added spec:commit task to commit changes to spec/ruby sources.
[rbx.git]
/
shotgun
/
test
/
test_instructions.c
blob
cd632b2c22df098a9d6048d86e88c862abd0127c
1
#include
"rubinius.h"
2
#include <assert.h>
3
#include
"cpu.h"
4
5
#define rassert(e) ({ assert(e); printf(
"%s:%d: <%s> => success
\n
"
, __FUNCTION__, __LINE__, #e); })
6
7
int
main
(
int
argc
,
char
**
argv
) {
8
STATE
;
9
10
state
=
rubinius_state_new
();
11
12
return
0
;
13
}