代码搜索:自编程
找到约 10,000 项符合「自编程」的源代码
代码结果 10,000
www.eeworm.com/read/387769/8654970
txt 1-9自加.txt
ORG 0000H
JMP MAIN
ORG 0030H
MAIN:
mov p0,#0ffh
mov p1,#0ffh
mov p2,#0ffh
mov 30h,#00h
DISP_LOOP1:
mov a,30h
mov dptr,#table
movc a,@a+dptr
mov p0,a
mov p2,#11111011b
ca
www.eeworm.com/read/387769/8655012
txt 1-99自加.txt
CURR_NUM EQU 30H ;BCD
org 0000H
jmp MAIN
;*******************************************
org 0030H ;Start program from 0030H
MAIN:
mov P0,#0FFH ;Initialize the port
mov P1,#0FFH
www.eeworm.com/read/387769/8655013
txt 1~9自增程序.txt
org 0000H
jmp MAIN
;*******************************************************
org 0030H ;start program from 0030H
MAIN:
mov p0,#0FFH
mov p1,#0FFH
mov p2,#0FFH
mov p3,#0FFH
clr p3.3
M
www.eeworm.com/read/182824/9190228
txt 自汇状态栏.txt
//设置状态栏面板对象的Style为OwnerDraw,并在状态栏对象的DrawPanel事件中书写以下代码:
procedure TForm1.StatusBar1DrawPanel(StatusBar: TStatusBar;Panel: TStatusPanel; const Rect: Trect);
begin
with statusbar1.Canvas do
be