This file contains hidden or 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
| Niech ryczy z bólu ranny łoś, | |
| Zwierz zdrów przebiega knieje. | |
| Ktoś nie śpi, aby spać mógł ktoś, | |
| To są zwyczajne dzieje. |
This file contains hidden or 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
| ## - stałe systemowe - | |
| .equ kernel, 0x80 | |
| .equ stdout, 1 | |
| .equ exit, 0x01 | |
| .equ write, 0x04 | |
| .data | |
| text: | |
| .ascii "lorem ipsum .dolor sit, amet!\n(lol)\nlol2\n" | |
| text_len: | |
| .long ( . - text) |
This file contains hidden or 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
| ## Przykładowo: | |
| ## N=5, A B C | |
| ## A A B C C | |
| ## A B B B C | |
| ## B B B B B | |
| ## A B B B C | |
| ## A A B C C | |
| ## - stałe systemowe - |
This file contains hidden or 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
| ## Wypisanie elementów tablicy do pliku / stdout | |
| ## - stałe systemowe - | |
| .equ kernel, 0x80 | |
| .equ stdout, 1 | |
| .equ exit, 0x01 | |
| .equ write, 0x04 | |
| .equ create, 0x08 #create file function | |
| .equ close, 0x06 #close file function |
NewerOlder