Rename eforth to ueforth.

This commit is contained in:
Brad Nelson
2022-02-27 21:06:24 -08:00
parent fb47179999
commit 0bc9be1e19
5 changed files with 14 additions and 14 deletions

View File

@ -49,7 +49,7 @@ limitations under the License.
- Prior Releases
</p>
<p>
<a href="https://github.com/flagxor/eforth" target="_blank">http://github.com/flagxor/eforth</a>
<a href="https://github.com/flagxor/ueforth" target="_blank">http://github.com/flagxor/ueforth</a>
- Complete Unprocessed Source Code
</p>
@ -330,7 +330,7 @@ In popular cases a shorted higher level name is provided.
</p>
<p>
See <a href="https://github.com/flagxor/eforth/blob/main/esp32/template.ino">template.ino</a>.
See <a href="https://github.com/flagxor/ueforth/blob/main/esp32/template.ino">template.ino</a>.
</p>
<h5>Allocation</h5>
@ -876,7 +876,7 @@ z" NETWORK-NAME" z" PASSWORD" webui
</pre>
<p>
See <a href="https://github.com/flagxor/eforth/blob/main/esp32/web_interface.fs">web_interface.fs</a>.
See <a href="https://github.com/flagxor/ueforth/blob/main/esp32/web_interface.fs">web_interface.fs</a>.
</p>
<h3 id="autoexec">Autoexec.fs</h3>
@ -912,7 +912,7 @@ s" /spiffs/autoexec.fs" delete-file
</pre>
<p>
See <a href="https://github.com/flagxor/eforth/blob/main/esp32/autoboot.fs">autoboot.fs</a>.
See <a href="https://github.com/flagxor/ueforth/blob/main/esp32/autoboot.fs">autoboot.fs</a>.
</p>
<h3 id="adding_words">Adding Words</h3>

View File

@ -39,5 +39,5 @@ CALL10 ( n n n n n n n n n n fn -- n )
</pre>
<p>
See <a href="https://github.com/flagxor/eforth/blob/main/common/calling.h">calling.h</a>.
See <a href="https://github.com/flagxor/ueforth/blob/main/common/calling.h">calling.h</a>.
</p>

View File

@ -50,7 +50,7 @@ interprets or compiles it (reusing <code>PARSE</code>,
</p>
<p>
See <a href="https://github.com/flagxor/eforth/blob/main/common/core.h">core.h</a>.
See <a href="https://github.com/flagxor/ueforth/blob/main/common/core.h">core.h</a>.
</p>
<p>
@ -98,7 +98,7 @@ additional non-essential extra opcodes were added in place of high-level
words.</b></p>
<p>
See <a href="https://github.com/flagxor/eforth/blob/main/common/opcodes.h">opcodes.h</a>.
See <a href="https://github.com/flagxor/ueforth/blob/main/common/opcodes.h">opcodes.h</a>.
</p>
<p>

View File

@ -48,7 +48,7 @@ limitations under the License.
- Prior Releases
</p>
<p>
<a href="https://github.com/flagxor/eforth" target="_blank">http://github.com/flagxor/eforth</a>
<a href="https://github.com/flagxor/ueforth" target="_blank">http://github.com/flagxor/ueforth</a>
- Complete Unprocessed Source Code
</p>
@ -76,7 +76,7 @@ DLSYM ( module name-z -- fn )
</pre>
<p>
See <a href="https://github.com/flagxor/eforth/blob/main/posix/posix_main.c">posix_main.c</a>.
See <a href="https://github.com/flagxor/ueforth/blob/main/posix/posix_main.c">posix_main.c</a>.
</p>
<p>
@ -87,8 +87,8 @@ Native functions all called with CALL(n) (see Windows &amp; Linux Calling below)
<p>
Various Linux calls including Xlib are imported in
<a href="https://github.com/flagxor/eforth/blob/main/posix/posix.fs">posix.fs</a> and
<a href="https://github.com/flagxor/eforth/blob/main/posix/xlib.fs">xlib.fs</a>.
<a href="https://github.com/flagxor/ueforth/blob/main/posix/posix.fs">posix.fs</a> and
<a href="https://github.com/flagxor/ueforth/blob/main/posix/xlib.fs">xlib.fs</a>.
In addition, <code>TYPE</code> and <code>KEY</code> are connected to
<code>stdin</code> and <code>stdout</code>.
</p>

View File

@ -52,7 +52,7 @@ limitations under the License.
- Prior Releases
</p>
<p>
<a href="https://github.com/flagxor/eforth" target="_blank">http://github.com/flagxor/eforth</a>
<a href="https://github.com/flagxor/ueforth" target="_blank">http://github.com/flagxor/ueforth</a>
- Complete Unprocessed Source Code
</p>
@ -84,7 +84,7 @@ including MSVCRT.
</p>
<p>
See <a href="https://github.com/flagxor/eforth/blob/main/windows/windows_main.c">windows_main.c</a>.
See <a href="https://github.com/flagxor/ueforth/blob/main/windows/windows_main.c">windows_main.c</a>.
</p>
<p>
@ -95,7 +95,7 @@ Native functions all called with CALL(n) (see Windows &amp; Linux Calling below)
<p>
Various Win32 calls are imported in
<a href="https://github.com/flagxor/eforth/blob/main/windows/windows.fs">windows.fs</a>.
<a href="https://github.com/flagxor/ueforth/blob/main/windows/windows.fs">windows.fs</a>.
In addition, a terminal that responds to ANSI escape codes is created and connected to
<code>TYPE</code> and <code>KEY</code>.
</p>