Skip to content

Commit d8616ff

Browse files
committed
add readme and license files
1 parent 4d8ccca commit d8616ff

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021-present Skylot and other contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Raung
2+
3+
**raung** - yet another assembler/disassembler for java bytecode.
4+
5+
Similar to [Krakatau](https://github.com/Storyyeller/Krakatau) and [Smali](https://github.com/JesusFreke/smali),
6+
based on [ASM](https://asm.ow2.io/) library.
7+
8+
:exclamation: Warning: this project at a very early stage of development, many features not yet finished and syntax not stable.
9+
10+
11+
### Syntax example:
12+
```smali
13+
.version 52
14+
.class public HelloWorld
15+
.source "HelloWorld.java"
16+
17+
.method public static main([Ljava/lang/String;)V
18+
.max stack 2
19+
.max locals 1
20+
21+
.local 0 "args" [Ljava/lang/String;
22+
.line 4
23+
getstatic java/lang/System out Ljava/io/PrintStream;
24+
ldc "Hello, World!"
25+
invokevirtual java/io/PrintStream println (Ljava/lang/String;)V
26+
.line 5
27+
return
28+
.end method
29+
```
30+
31+
---------------------------------------
32+
*Licensed under the MIT License*

0 commit comments

Comments
 (0)