Co-authored-by: Gabe <66077254+MrBrain295@users.noreply.github.com> Co-authored-by: Richie Bendall <richiebendall@gmail.com>
13 lines
185 B
Plaintext
13 lines
185 B
Plaintext
target byteorder little;
|
|
import puts;
|
|
export main;
|
|
|
|
section "data"{
|
|
s:bits8[] "Hello World\0";
|
|
}
|
|
|
|
foreign "C" main(){
|
|
foreign "C" puts("address"s);
|
|
foreign "C" return(0);
|
|
}
|