1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-13 08:25:28 +00:00

The descriptions of the CLI and SEI functions were reversed.

git-svn-id: svn://svn.cc65.org/cc65/trunk@3811 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2008-02-21 16:59:57 +00:00
parent f1ea61581f
commit fbbab1655f

View File

@@ -811,8 +811,8 @@ is present.
<tag/Header/<tt/<ref id="6502.h" name="6502.h">/ <tag/Header/<tt/<ref id="6502.h" name="6502.h">/
<tag/Declaration/<tt/void CLI (void);/ <tag/Declaration/<tt/void CLI (void);/
<tag/Description/The function will insert a 6502 CLI instruction into the code, <tag/Description/The function will insert a 6502 CLI instruction into the code,
so interrupts are disabled. Note that non maskable interrupts cannot be so interrupts are enabled. Enabling interrupts has no effects if they are
disabled. already enabled (the default).
<tag/Limits/<itemize> <tag/Limits/<itemize>
<item>The function is actually a macro. <item>The function is actually a macro.
<item>Disabling interrupts may lead to unexpected results. <item>Disabling interrupts may lead to unexpected results.
@@ -932,10 +932,11 @@ depend of the address expression used.
<tag/Header/<tt/<ref id="6502.h" name="6502.h">/ <tag/Header/<tt/<ref id="6502.h" name="6502.h">/
<tag/Declaration/<tt/void SEI (void);/ <tag/Declaration/<tt/void SEI (void);/
<tag/Description/The function will insert a 6502 SEI instruction into the code, <tag/Description/The function will insert a 6502 SEI instruction into the code,
so interrupts are enabled. Enabling interrupts has no effects if they are so interrupts are disabled. Note that non maskable interrupts cannot be
already enabled (the default). disabled.
<tag/Limits/<itemize> <tag/Limits/<itemize>
<item>The function is actually a macro. <item>The function is actually a macro.
<item>Disabling interrupts may lead to unexpected results.
</itemize> </itemize>
<tag/Availability/cc65 <tag/Availability/cc65
<tag/See also/ <tag/See also/