システムの時刻と日付を取得し、それを ASCII に変換して、モニターに表示するアセンブリ プログラムに取り組んでいます。正しく表示するのに問題があり、どこが間違っているのかわかりません。これは課題のためです。可能であれば、解決策だけでなく説明が欲しいです。これが私のコードです:
TITLE GETDTTM
PAGE 60, 132
; This program retrieve the system date and time,
; converts it to ASCII, and displays it to the screen
; Define constants
;
CR EQU 0DH ;define carriage return
LF EQU 0AH ;define line feed
EOM EQU '$' ;define end of message marker
NULL EQU 00H ;define NULL byte
;
; Define variables
;
JMP START
PROMPT DB CR, LF, "The current time is: ",EOM
PROMPT2 DB CR, LF, "The date is: ",EOM
TIME DB "00:00:00", CR, LF, EOM
DATE DB "00/00/0000", CR, LF, EOM
;
; Program code
;
START:
CALL GET_TIME ;call function to get system time
CALL GET_DATE ;call function to get system date
LEA DX, PROMPT ;print time prompt to screen
MOV AH, 09H
INT 21H
LEA DX, TIME ;print time
MOV AH, 09H
INT 21H
LEA DX, PROMPT2 ;print date prompt to screen
MOV AH, 09H
INT 21H
LEA DX, DATE ;print date
MOV AH, 09H
INT 21H
CVT_TIME: ;converts the time to ASCII
CALL CVT_HR
CALL CVT_MIN
CALL CVT_SEC
RET
CVT_HR:
MOV BH, CH ;copy contents of hours to BH
SHR CH,4 ;convert high char to low order bits
ADD CH, 30H ;add 30H to convert to ASCII
MOV [TIME], CH ;save it
AND BH, 0FH ;isolate lower 4 bits
ADD BH, 30H ;convert to ASCII
MOV [TIME+1], BH ;save it
RET
CVT_MIN:
MOV BH, CL ;copy contents of minutes to BH
SHR CL, 4 ;convert high char to low order bits
ADD CL, 30H ;add 30H to convert to ASCII
MOV [TIME+3], CL ;save it
AND BH, 0FH ;isolate lower 4 bits
ADD BH, 30H ; convert to ASCII
MOV[TIME+4], BH ;save it
CVT_SEC:
MOV BH, DH ;copy contents of seconds to BH
SHR DH, 4 ;convert high char to low order bits
ADD DH, 30H ;add 30H to convert to ASCII
MOV [TIME+6], DH ;save it
AND BH, 0FH ;isolate lower 4 bits
ADD BH, 30H ;convert to ASCII
MOV[TIME+7], BH ;save it
GET_DATE: ;get date from the system
MOV AH, 04H ;BIOS function to read date
INT 1AH ;call to BIOS, run 04H
CALL CVT_DATE
RET
;CH = Century
;CL = Year
;DH = Month
;DL = Day
;CF = 0 if clock is running, otherwise 1
CVT_DATE:
CALL CVT_MO
CALL CVT_DAY
CALL CVT_YR
CALL CVT_CT
RET
CVT_MO: ;convert the month to ASCII
MOV BH, DH ;copy month to BH
SHR BH, 4 ;convert high char to low order bits
ADD BH, 30H ;add 30H to convert to ASCII
MOV [DATE], BH ;save in DATE string
MOV BH, DH ;copy month to BH
AND BH, 0FH ;isolate lower 4 bits
ADD BH, 30H ;convert lower bits to ASCII
MOV [DATE+1], BH;save in DATE string
RET
CVT_DAY: ;convert the day to ASCII
MOV BH, DL ;copy days to BH
SHR BH, 4 ;convert high char to low order bits
ADD BH, 30H ;add 30H to convert to ASCII
MOV [DATE+3], BH ;save in DATE string
MOV BH, DL ;copy days to BH
AND BH, 0FH ;isolate lower 4 bits
ADD BH, 30H ;convert lower bits to ASCII
MOV [DATE+4], BH;save in DATE string
RET
CVT_YR: ;convert the year to ASCII
MOV BH, CL ;copy year to BH
SHR BH, 4 ;convert high char to low order bits
ADD BH, 30H ;convert to ASCII
MOV [DATE+8], BH ;save it
MOV BH, CL ;copy year to BH
AND BH, 0FH ;isolate low order bits
ADD BH, 30H ;convert to ASCII
MOV [DATE+9], BH ;save in DATE string
RET
CVT_CT: ;convert the century to ASCII
MOV BH, CH ;copy century to BH
SHR BH, 4 ;convert high char to low order bits
ADD BH, 30H ;convert to ASCII
MOV [DATE+6], BH ;save it
MOV BH, CH ;copy century to BH
AND BH, 0FH ;isolate low order bits
ADD BH, 30H ;convert to ASCII
MOV [DATE+7], BH ;save it
RET
;
;Program End
;
End
2015 年 2 月 19 日の午前 9 時 11 分に実行すると、次のようになります。
The current time is: 09:00:00
The date is: 02/09/0005
私がやろうとしていることを理解し、何らかの論理エラーがあるかどうかを簡単に確認できるように、私の意図について多くのコメントを追加しようとしました。分と秒が TIME に入力されていないことが出力から明らかであり、それを修正する方法についていくつかのアイデアがあると思いますが、正午以降、奇妙な時間が表示され、何が起こっているのか混乱しています。私の日付。どんな助けでも大歓迎です。
編集:それを分割し、実際に分と秒を処理することで作業する時間が得られました...おっと。今、私の出力は次のとおりです。
2015 年 2 月 19 日の午前 9 時 23 分に実行
The current time is: 09:23:02
The date is: 02/09/0005
EDIT2:近づいています![DATE] キャッチをありがとう - 私はそれを修正し、正しい月と日の値を取得し、年の値に近づいています。year は 4 文字 (8 ビットではなく 16 ビット) であるため、十分にシフトしていないことがわかりました。-SHR 4ビットだけではすべてを取得できませんでした! 私の出力は次のようになります。
The current time is: 09:43:02
The date is: 02/19/0015
編集 3: CVT_CT を追加して世紀を ASCII に変換し、それを [DATE] 文字列に追加しましたが、それでも同じ出力が得られます...
The current time is: 10:06:02
The date is: 02/19/0015
編集 4: 新しい関数への呼び出しを追加するのを忘れていました... うわー。現在作業中!!! ご協力ありがとうございました!
The current time is: 10:09:02
The date is: 02/19/2015
副次的な質問: 秒が常に 02 になる理由が何か分かりますか?