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
org 100h | |
use16 | |
include 'dec_proc32.asm' | |
include 'lab4lib.asm' | |
mov CL,1 | |
mov BL,1 | |
mov dx,0 |
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
jmp lib_end | |
; ######################### | |
cnsn: | |
push AX | |
push CX | |
push DX | |
push BX | |
mov AH,6; clean screen | |
mov AL,0 | |
mov CX,0 |
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
#!/usr/bin/env python | |
def main(): | |
print "+-----------------------+" | |
for i in xrange(256): | |
print " | ", i, " | ", chr(i), " | " | |
print "+-----------------------+" | |
if __name__ == '__main__': |
NewerOlder