This file contains 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> |
This file contains 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 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 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 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,12h | |
int 10h | |
;mov ax,0001h | |
xchg si,ax | |
xchg ah,al | |
int 33h |
This file contains 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 | |
rep stosb | |
mov al,13 | |
mov ch,50 |
This file contains 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 | |
xchg bp,ax | |
imul ax,[bp+si+400],50*10 | |
sub ax,14 | |
int 29h | |
ret |
This file contains 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 0x100 | |
xchg bp,ax | |
imul dx,[bp+si+101],58*457 ; maybe playing with that value | |
inc di | |
outsb | |
add sp,[si] | |
mov dx,si | |
int 33 |
This file contains 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
xchg bx,ax | |
mov es,[si] | |
lodsb | |
int 0x10 |
This file contains 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
adc ax,[bx+si] ; dw 0x13 |
NewerOlder