Created
January 28, 2014 10:04
-
-
Save sinitcin/8665016 to your computer and use it in GitHub Desktop.
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
macro RGB red, green, blue | |
{ | |
xor eax, eax | |
mov al, blue ; blue | |
rol eax, 8 | |
mov al, green ; green | |
rol eax, 8 | |
mov al, red ; red | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Макрос для FASM генерирует RGB цвет на основе значений 0.255 для каждого из составных цветов...