Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jedeoric committed Jan 26, 2024
1 parent dfbe6c9 commit 01cf374
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 3 deletions.
48 changes: 48 additions & 0 deletions docs/code/stylesheets/extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
:root > * {
--md-code-bg-color: #1b1a1a;
--md-code-hl-name-color: #FFFFFF;
--md-code-fg-color: #FFFFFF;
--md-code-hl-operator-color: #58aa22;
--md-code-hl-punctuation-color: #FFFFFF;
--md-code-hl-comment-color: #707070;
--md-code-hl-generic-color: #037c0d;
--md-code-hl-variable-color: #FFFFFF;
--md-default-bg-color: #000000;
--md-default-fg-color: #FFFFFF;
--md-default-fg-color--lighter: #FFFFFF;
--md-default-fg-color--light: #FFFFFF;
}

.star {
color: #FFFF00;
}

.md-button {
background-color: #707070;
}

.md-header__topic::before {
background-image: url("/degrade_before.png");
}

.md-ellipsis::before {
/*content: "";*/
display: inline-block;
width: 112px;
height: 16px;
margin-right: 5px;
/*background-image: url("/degrade_before.png");*/
background-size: cover;
text-align: left;
}

.md-ellipsis::after {
/*content: "";*/
display: inline-block;
width: 112px;
height: 16px;
margin-left: 5px;
/*background-image: url("/degrade_after.png");*/
background-size: cover;
text-align: left;
}
2 changes: 1 addition & 1 deletion docs/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
site_name: CH376 LIB DOCUMENTATION 2024.1
site_name: CH376 LIB DOCUMENTATION 2024.2

markdown_extensions:
- pymdownx.highlight
Expand Down
4 changes: 2 additions & 2 deletions src/_ch376_check_exist.s
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

.proc _ch376_check_exist
;;@proto unsigned char ch376_check_exist(void);
;;@brief Send a value, if ch376 is present, it will return 0XAA
;;@brief If ch376 is present, it will return 0XAA
;;@returns 0XAA if it's OK
.endproc

;;Follow next routine

.proc ch376_check_exist
;;@brief Send a value, if ch376 is present, it will return $AA
;;@brief If ch376 is present, it will return $AA
;;@returnsA $AA if it's OK
lda #CH376_CHECK_EXIST ;
sta CH376_COMMAND
Expand Down

0 comments on commit 01cf374

Please sign in to comment.