This website requires JavaScript.
Explore
Help
Sign In
Rativel
/
BurritOS
Watch
1
Star
1
Fork
0
You've already forked BurritOS
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
7860fc6a49
BurritOS
/
test
/
riscv_instructions
/
boolean_logic
/
comparisons.c
13 lines
162 B
C
Raw
Normal View
History
Unescape
Escape
ONGOING: Test programs
2023-02-08 16:01:41 +01:00
int
main
(
)
{
int
x
=
0
;
int
y
=
1
;
Fixed nobody to run
2023-05-09 18:08:44 +02:00
if
(
x
>
y
)
{
x
+
=
1
;
}
if
(
x
=
=
y
)
{
x
+
=
y
;
}
if
(
x
<
y
)
{
y
+
=
1
;
ONGOING: Test programs
2023-02-08 16:01:41 +01:00
}
}
Reference in New Issue
Copy Permalink