Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- macro col [color]{
- ; mov ax, mode;00010h 0006ah ; set graphics mode
- mov bx, color;0000dh ; set color in graphics mode
- int 010h
- }
- macro blue{
- col 00001h
- }
- macro green{
- col 00002h
- }
- macro cyan{
- col 00003h
- }
- macro red{
- col 00004h
- }
- macro magenta{
- col 00005h
- }
- macro brown{
- col 00006h
- }
- macro white{
- col 00007h
- }
- macro gray{
- col 00008h
- }
- macro bblue{
- col 00009h
- }
- macro bgreen{
- col 0000ah
- }
- macro bcyan{
- col 0000bh
- }
- macro bred{
- col 0000ch
- }
- macro bmagenta{
- col 0000dh
- }
- macro yellow{
- col 0000eh
- }
- macro bwhite{
- col 0000fh
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement