Skip to content

Instantly share code, notes, and snippets.

@kuninet
Created January 4, 2020 05:29
Show Gist options
  • Save kuninet/3ff7fe72e82bdb0435bb94f05d7c9361 to your computer and use it in GitHub Desktop.
Save kuninet/3ff7fe72e82bdb0435bb94f05d7c9361 to your computer and use it in GitHub Desktop.
PC-8001 RTC(Date/TIme) Set Test
;
; PC-8001 DATE/TIME Set Test
; ex. 06/05/04 03:02:01
org 9000h
;
DATE_TIME_WK EQU 0EA76h
RTC_CMD_SET EQU 01675h
RTC_SET EQU 01663h
GOTO_MON EQU 05C66h
;
LD HL,DATE_DATA
LD DE,DATE_TIME_WK
LD BC,DATE_LEN
LDIR
;
LD A,2
CALL RTC_CMD_SET
CALL RTC_SET
JP GOTO_MON
;
DATE_DATA:
; sec,min,hour,date,month,year (BCD)
DB 01h,02h,03h,04h,05h,06h
DATE_LEN EQU $-DATE_DATA
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment