Subversion Repositories Kolibri OS

Rev

Rev 3098 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3098 Rev 3670
Line 47... Line 47...
47
; last update:  31/03/2012
47
; last update:  31/03/2012
48
; changed by:   Marat Zakiyanov aka Mario79, aka Mario
48
; changed by:   Marat Zakiyanov aka Mario79, aka Mario
49
; changes:      The program uses only 20 Kb memory is now.
49
; changes:      The program uses only 20 Kb memory is now.
50
;               Code optimizing and refactoring.
50
;               Code optimizing and refactoring.
51
;------------------------------------------------------------------------------
51
;------------------------------------------------------------------------------
-
 
52
format binary as ""
-
 
53
 
52
	use32
54
        use32
53
	org 0x0
55
        org 0x0
54
	db 'MENUET01'	; 8 byte id
56
        db 'MENUET01'   ; 8 byte id
55
	dd 0x01		; header version
57
        dd 0x01         ; header version
56
	dd START	; program start
58
        dd START        ; program start
Line 643... Line 645...
643
;	mcall	66,,183,0h 	; PrintScreen UP
645
;       mcall   66,,183,0h      ; PrintScreen UP
Line 644... Line 646...
644
 
646
 
645
 
647
 
646
;	mcall	66,,91,100h	; Alt+LWin
648
;       mcall   66,,91,100h     ; Alt+LWin
647
;	mcall	66,,92		; Alt+RWin
649
;       mcall   66,,92          ; Alt+RWin
648
	mcall	66,,62,100h	; Alt+F4
650
        mcall   66,,62,300h     ; Alt+F4
649
;	mcall	66,,71		; Alt+Home
651
;       mcall   66,,71          ; Alt+Home
650
;	mcall	66,,72		; Alt+Up
652
;       mcall   66,,72          ; Alt+Up
651
	mcall	66,,2		; Alt+1
653
        mcall   66,,2           ; Alt+1
652
	mcall	66,,3		; Alt+2
654
        mcall   66,,3           ; Alt+2
653
	mcall	66,,4		; Alt+3
655
        mcall   66,,4           ; Alt+3
654
	mcall	66,,5		; Alt+4
656
        mcall   66,,5           ; Alt+4
655
	mcall	66,,6		; Alt+5
657
        mcall   66,,6           ; Alt+5
656
	mcall	66,,7		; Alt+6
658
        mcall   66,,7           ; Alt+6
657
	mcall	66,,8		; Alt+7
659
        mcall   66,,8           ; Alt+7
658
	mcall	66,,15		; Alt+Tab DOWN
660
        mcall   66,,15          ; Alt+Tab DOWN
Line 659... Line 661...
659
	mcall	66,,15,101h 	; Alt+Shift+Tab DOWN
661
        mcall   66,,15,301h     ; Alt+Shift+Tab DOWN
660
	mcall	66,,69		; Alt+Shift+NumLock
662
        mcall   66,,69          ; Alt+Shift+NumLock
661
 
663