forked from MARIE-js/MARIE.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from MARIE-js/master
Update my fork so that I can update Google APIs credentials
- Loading branch information
Showing
12 changed files
with
227 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/ Unicode (UTF-16BE) Demo | ||
/ by the MARIE.js Team | ||
/ Copyright (C) 2020. Licensed under the MIT License | ||
|
||
LOOP, Load PTR | ||
/ output word | ||
LoadI PTR | ||
Output | ||
|
||
/ increment pointer | ||
Load PTR | ||
Add ONE | ||
Store PTR | ||
|
||
/ increment counter | ||
Load CTR | ||
Add ONE | ||
Store CTR | ||
|
||
/ check whether all words have been processed and halt if so | ||
Subt WORDS | ||
Skipcond 400 | ||
Jump LOOP | ||
Halt | ||
|
||
ONE, DEC 1 | ||
CTR, DEC 0 | ||
WORDS, DEC 19 | ||
|
||
/ initialize pointer to words | ||
PTR, ADR S | ||
|
||
/ ouput data | ||
/ "Hello World!" | ||
S, HEX 48 | ||
HEX 45 | ||
HEX 4C | ||
HEX 4C | ||
HEX 4F | ||
HEX 20 | ||
HEX 57 | ||
HEX 4F | ||
HEX 52 | ||
HEX 4C | ||
HEX 44 | ||
HEX 21 | ||
|
||
/ Smiley (outside of the Basic Multilingual Plane) | ||
HEX D83D | ||
HEX DE42 | ||
|
||
/ Byte Order Mark, big-endian (ignored) | ||
HEX FEFF | ||
|
||
/ Byte Order Mark, little-endian (ignored) | ||
HEX FFFE | ||
|
||
/ Inverted Smiley (outside of the BMP) | ||
HEX D83D | ||
HEX DE43 | ||
|
||
/ Copyright Sign (inside the BMP) | ||
HEX A9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.