summaryrefslogtreecommitdiff
path: root/demo/demo5.asm
blob: 8729c7eda8f670a50bbdbf0c42e2910d16e491b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
; Dissassebler
; --------------------
; [Main menu] -> [Tools] -> [Dissasseble]
; Choose some hex file and see result

; Custom commands
; --------------------
; They can be used for instance to load your program into a 
; real processor.
; [Main menu] -> [Configure] -> [Edit cutom commands]
; [Main menu] -> [Tools] -> [Cutom command N]

; Tip of the day
; --------------------
; You may find some useful advices how to use this 
; IDE more efficiently
; [Main menu] -> [Help] -> [Tip of the day]

; Project web page:
; --------------------
; http://mcu8051ide.sf.net



; AND NOW YOU ARE READY !
; Click on [Main menu] -> [Project] -> [New] and create your own 8051 project ...


; !!! HAVE A GOOD LUCK WITH THIS IDE !!!

	org	0
	sjmp	$
	end

; !!! HAVE A GOOD LUCK WITH THIS IDE !!!