语法高亮,滚动条美化,设置页面调整

This commit is contained in:
fofolee
2019-04-19 02:41:09 +08:00
parent 1e8f76c000
commit 359d29ee0b
1590 changed files with 12328 additions and 11441 deletions

View File

@@ -8,7 +8,7 @@
<p>功能:在屏幕上指定位置输出字符串</p>
<p>说明outtextxy为指向TextOut的宏用法相同。</p>
<pre>
<pre><code class="language-c">
str所指向字符串可以为中文或英文。中文显示成16x16点阵英文显示成8x16点阵。
mode决定往屏幕上写的方式其值含义如下
@@ -16,10 +16,10 @@
1正常方式即点阵中为0的点擦除为1的点显示。
2反显方式即点阵中为1的点擦除为0的点显示。
3异或方式即点阵中点的值和屏幕当前位置的值作异或后取值为0则擦除为1显示。
</pre>
</code></pre>
举例:<pre>
举例:<pre><code class="language-c">
// TextOut.c
@@ -39,5 +39,5 @@
return 0;
}
</pre>相关函数:无
</code></pre>相关函数:无