This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
org 100h | |
;inc cx | |
mov cx,1 | |
mov bx,tabel | |
x: | |
xlatb ; xlatb, ga bisa increment langsung di register al buat ambil nilai di tabel ke index selanjutnya | |
; jadi, increment dulu di register lain, contoh cx, nanti pindahin lagi ke register al | |
mov ax,cx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
org 100h | |
mov al,0x13 | |
int 0x10 | |
les bp,[bx] | |
mov al,11 | |
mov ch,50 | |
x: | |
jcxz a | |
;rep stosb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.section .text | |
.global bubblesort | |
bubblesort: | |
# a0 = long *list | |
# a1 = size | |
# t0 = swapped | |
# t1 = i | |
1: # do loop | |
li t0, 0 # swapped = false | |
li t1, 1 # i = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ProxyRequests Off | |
ProxyPreserveHost On | |
ServerName site.name.tls | |
<Proxy *> | |
Require all granted | |
</Proxy> |
OlderNewer