Advertisement
theguild42

FASM code

Apr 26th, 2023
1,090
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. macro col [color]{
  2. ;    mov ax, mode;00010h 0006ah ; set graphics mode
  3.     mov bx, color;0000dh ; set color in  graphics mode
  4.     int 010h
  5. }              
  6.  
  7. macro blue{
  8.     col 00001h
  9. }
  10. macro green{
  11.     col 00002h
  12. }
  13. macro cyan{
  14.     col 00003h
  15. }
  16. macro red{
  17.     col 00004h
  18. }
  19. macro magenta{
  20.     col 00005h
  21. }
  22. macro brown{
  23.     col 00006h
  24. }
  25. macro white{
  26.     col 00007h
  27. }
  28. macro gray{
  29.     col 00008h
  30. }
  31. macro bblue{
  32.     col 00009h
  33. }
  34. macro bgreen{
  35.     col 0000ah
  36. }
  37. macro bcyan{
  38.     col 0000bh
  39. }
  40. macro bred{
  41.     col 0000ch
  42. }
  43. macro bmagenta{
  44.     col 0000dh
  45. }
  46. macro yellow{
  47.     col 0000eh
  48. }
  49. macro bwhite{
  50.     col 0000fh
  51. }
  52.  
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement