Diddy
Can’t stop. Won’t stop.
★★★★★
- Joined
- Dec 21, 2022
- Posts
- 28,025
Code:
.data
str: .asciiz "Kill all niggers"
.text
.globl main
main:
li, $v0, 4
la $a0, str
syscall
addi $v0, $zero, 10
syscall
.data
str: .asciiz "Kill all niggers"
.text
.globl main
main:
li, $v0, 4
la $a0, str
syscall
addi $v0, $zero, 10
syscall
I only know arm assembly sorry i can't understand thatReplies: 0
Views: 43
what the FUCK did you expect broReplies: 0
Views: 43
You can use ARM here if you want.I only know arm assembly sorry i can't understand that
I was hoping for some assemblycels to reply to this thread.what the FUCK did you expect bro
Are any good emulators to learn arm on x86I only know arm assembly sorry i can't understand that
I don't know we used ARM simulator in one of the coursesAre any good emulators to learn arm on x86
.dataCode:.data str: .asciiz "Kill all niggers" .text .globl main main: li, $v0, 4 la $a0, str syscall addi $v0, $zero, 10 syscall