Noted: Sunday, October 20, 2024, 15:30:01 + 5
parent
031fb74028
commit
ffca3dcc60
|
@ -1,5 +1,13 @@
|
|||
{
|
||||
"recentFiles": [
|
||||
{
|
||||
"basename": "C - write NASA CODE",
|
||||
"path": "Coding Tips (Classical)/Terminal Tips/2. CLI Tools/Languages/Low level - Back-end/C - write NASA CODE.md"
|
||||
},
|
||||
{
|
||||
"basename": "1.About Languages",
|
||||
"path": "Coding Tips (Classical)/Terminal Tips/2. CLI Tools/Languages/1.About Languages.md"
|
||||
},
|
||||
{
|
||||
"basename": "Maker Faire",
|
||||
"path": "Coding Tips (Classical)/Project Vault/Current Projects/Communication Projects/Makerfaire/Maker Faire.md"
|
||||
|
@ -191,14 +199,6 @@
|
|||
{
|
||||
"basename": "Coding Projects",
|
||||
"path": "Coding Tips (Classical)/Project Vault/Current Projects/Programming projects/Website Projects/Current Website/Coding Projects.md"
|
||||
},
|
||||
{
|
||||
"basename": "Intro to Quantum Technologies",
|
||||
"path": "Coding Tips (Classical)/Project Vault/Current Projects/Programming projects/Website Projects/Current Website/Intro to Quantum Technologies.md"
|
||||
},
|
||||
{
|
||||
"basename": "Xontrib-avox",
|
||||
"path": "Coding Tips (Classical)/Terminal Tips/1. Terminals/Shells/xonsh/Xontrib-avox.md"
|
||||
}
|
||||
],
|
||||
"omittedPaths": [],
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Coding Tips (Classical)/Project Vault/Current Projects/Communication Projects/Makerfaire/Maker Faire.md",
|
||||
"file": "Coding Tips (Classical)/Terminal Tips/2. CLI Tools/Languages/Low level - Back-end/C - write NASA CODE.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
|
@ -151,7 +151,7 @@
|
|||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "Coding Tips (Classical)/Project Vault/Current Projects/Communication Projects/Makerfaire/Maker Faire.md",
|
||||
"file": "Coding Tips (Classical)/Terminal Tips/2. CLI Tools/Languages/Low level - Back-end/C - write NASA CODE.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
|
@ -168,7 +168,7 @@
|
|||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "Coding Tips (Classical)/Project Vault/Current Projects/Communication Projects/Makerfaire/Maker Faire.md",
|
||||
"file": "Coding Tips (Classical)/Terminal Tips/2. CLI Tools/Languages/Low level - Back-end/C - write NASA CODE.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
|
@ -191,7 +191,7 @@
|
|||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "Coding Tips (Classical)/Project Vault/Current Projects/Communication Projects/Makerfaire/Maker Faire.md"
|
||||
"file": "Coding Tips (Classical)/Terminal Tips/2. CLI Tools/Languages/Low level - Back-end/C - write NASA CODE.md"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -221,6 +221,8 @@
|
|||
},
|
||||
"active": "021723b1623b5b0a",
|
||||
"lastOpenFiles": [
|
||||
"Coding Tips (Classical)/Terminal Tips/2. CLI Tools/Languages/1.About Languages.md",
|
||||
"Coding Tips (Classical)/Project Vault/Current Projects/Communication Projects/Makerfaire/Maker Faire.md",
|
||||
"Coding Tips (Classical)/Project Vault/Current Projects/Programming projects/Website Projects/Content for website/Feature List for website.md",
|
||||
"Coding Tips (Classical)/Terminal Tips/System Client/OSX Apple Macbook/OSX Apps.md",
|
||||
"About Obsidian/Obsidian Guides/Quartz.md",
|
||||
|
@ -246,8 +248,6 @@
|
|||
"Coding Tips (Classical)/Terminal Tips/2. CLI Tools/Languages/High level - Front-end/Web \"Frameworks\".md",
|
||||
"Coding Tips (Classical)/Terminal Tips/2. CLI Tools/Languages/High level - Front-end/Markdown.md",
|
||||
"Coding Tips (Classical)/Terminal Tips/3. GUIs/Internet/Websites/Hosting/WordPress.md",
|
||||
"Coding Tips (Classical)/Terminal Tips/3. GUIs/Internet/Websites/Hosting/Domains.md",
|
||||
"Coding Tips (Classical)/Terminal Tips/3. GUIs/Internet/Websites/Hosting/Github Pages.md",
|
||||
"Coding Tips (Classical)/Project Vault/Current Projects/Programming projects/Website Projects/Personal Website/Recording 20231210205353.webm",
|
||||
"Coding Tips (Classical)/Project Vault/Current Projects/Programming projects/Website Projects/Content for website",
|
||||
"Coding Tips (Classical)/Project Vault/Current Projects/Programming projects/Website Projects/Personal Website/Recording-20231210205423.webm",
|
||||
|
|
|
@ -1,6 +1,41 @@
|
|||
|
||||
Of course the C Programming Language was one of the first languages taught at UCONN. And I still don't like it. But it's just the way that it goes.
|
||||
Of course the C Programming Language was one of the first languages taught at UCONN. And I still don't like it. Or really know it. Pointers can get confusing. But it's just the way that it goes.
|
||||
|
||||
|
||||
|
||||
![https://www.youtube.com/watch?v=GWYhtksrmhE](https://www.youtube.com/watch?v=GWYhtksrmhE)
|
||||
![https://www.youtube.com/watch?v=GWYhtksrmhE](https://www.youtube.com/watch?v=GWYhtksrmhE)
|
||||
|
||||
|
||||
For game tank games, use [cc65](https://cc65.github.io) which is a 6502 C compiler, whatever that means.
|
||||
- cc65 is a complete cross development package for 65(C)02 systems, including a powerful macro assembler, a C compiler, linker, librarian and several other tools.
|
||||
|
||||
- cc65 has C and runtime library support for many of the old 6502 machines, including
|
||||
|
||||
- the following Commodore machines:
|
||||
- VIC20
|
||||
- C16/C116 and Plus/4
|
||||
- C64
|
||||
- C128
|
||||
- CBM 510 (aka P500)
|
||||
- the 600/700 family
|
||||
- newer PET machines (not 2001).
|
||||
- the Apple ][+ and successors.
|
||||
- the Atari 8-bit machines.
|
||||
- the Atari 2600 console.
|
||||
- the Atari 5200 console.
|
||||
- GEOS for the C64, C128 and Apple //e.
|
||||
- the Bit Corporation Gamate console.
|
||||
- the NEC PC-Engine (aka TurboGrafx-16) console.
|
||||
- the Nintendo Entertainment System (NES) console.
|
||||
- the Watara Supervision console.
|
||||
- the VTech Creativision console.
|
||||
- the Oric Atmos.
|
||||
- the Oric Telestrat.
|
||||
- the Lynx console.
|
||||
- the Ohio Scientific Challenger 1P.
|
||||
- the Commander X16.
|
||||
- the Synertek Systems Sym-1.
|
||||
|
||||
|
||||
|
||||
~~ so retro ~~~
|
Loading…
Reference in New Issue