```@more /e +1 "%~f0"|debug>nul&goto:eof
a100
mov al,12
int 10 ;Graphic, 640 * 480, 16
mov ah,c ;Function number to write pixels, default bx=0, which is page number
mov dx,1e1 ;Initial value: row number
mov al,10 ;Initial value: pixel color value (0 - f)
dec dx ;--------10b
test al,al
jnz 112
mov al,10 ;Color cycle
dec al ;--------112
mov cx,280 ;Initial value: column number
int 10 ;--------117
loop 117
test dx,dx
jnz 10b
int 20
g
q
```
a100
mov al,12
int 10 ;Graphic, 640 * 480, 16
mov ah,c ;Function number to write pixels, default bx=0, which is page number
mov dx,1e1 ;Initial value: row number
mov al,10 ;Initial value: pixel color value (0 - f)
dec dx ;--------10b
test al,al
jnz 112
mov al,10 ;Color cycle
dec al ;--------112
mov cx,280 ;Initial value: column number
int 10 ;--------117
loop 117
test dx,dx
jnz 10b
int 20
g
q
```


