Quote from: McArti0 on Yesterday at 17:37check RESET circuit. IC110 pin3 (Lo), pin6 (Hi)hello McArti0
tag_description
; name of expected tag
db "song",0
; callbacks when entering / closing the tag
dw cb0_song, cb1_song
; list of attributes in the form
; db "attribute_name0",0
; db "attribute_name1",0
;...
; Unsupported for now, but put end of list marker for forward compatibility
db 0
; list of subtags
dw instruments
dw subsongs
; ...
;end of list
dw 0
xml_parser_simple
; In:
; HL = callback when tag opened, invoked with:
; HL = pointer to tag name
; B = size of tag name (rationale: HL can point to the buffer, without having to copy the name into a null-terminated string)
; DE = pointer to tag info (ToBeDefined);
; DE = callback when tag closed, invoked with:
; A = type of value
; 0 = no value
; 1 = 16 bits signed integer
; ... To be defined
;16 = string
; HL = value or pointer to the value depending on the type.
; IX = input callback, invoked with:
; BC = size (number of bytes to provide)
; DE = destination buffer (where to provide the bytes)
Page created in 0.179 seconds with 16 queries.