Search found 23 matches

by kaos
Mon Dec 12, 2022 10:59 pm
Forum: CX16 Hardware Support
Topic: Teaching kids at school about IT history and 8 bit computing
Replies: 25
Views: 18286

Teaching kids at school about IT history and 8 bit computing

<blockquote class="ipsQuote" data-ipsquote="" data-ipsquote-contentapp="forums" data-ipsquote-contentclass="forums_Topic" data-ipsquote-contentcommentid="24017" data-ipsquote-contentid="5000" data-ipsquote-contenttype="forums" data-ipsquote-timestamp="1670885443" data-ipsquote-userid="3882" data-ips...
by kaos
Mon Dec 12, 2022 10:15 pm
Forum: CX16 Hardware Support
Topic: Teaching kids at school about IT history and 8 bit computing
Replies: 25
Views: 18286

Teaching kids at school about IT history and 8 bit computing

On the future of computing: <a href="https://en.wikipedia.org/wiki/Landauer%27s_principle" rel="external nofollow">Landauer's principle</a> says that energy dissipates from irreversible transformations. If you delete a single bit, <a href="https://en.wikipedia.org/wiki/Boltzmann_constant" rel="exte...
by kaos
Mon Dec 12, 2022 7:47 pm
Forum: CX16 Hardware Support
Topic: Teaching kids at school about IT history and 8 bit computing
Replies: 25
Views: 18286

Teaching kids at school about IT history and 8 bit computing

Internet is "specified" in a bunch of requests for comments (<a href="https://en.wikipedia.org/wiki/Request_for_Comments" rel="external nofollow">RFCs</a>). <a href="https://www.ietf.org/rfc/rfc1.html" rel="external nofollow">RFC 1</a> - Two computers are connected together in a lab. Nice ASCII gra...
by kaos
Mon Dec 12, 2022 7:13 pm
Forum: CX16 Hardware Support
Topic: Teaching kids at school about IT history and 8 bit computing
Replies: 25
Views: 18286

Teaching kids at school about IT history and 8 bit computing


yewtube?

is that 4chan-slang for jew tube? replace the prefix "yew" with "you" and avoid that potential trap.

 

As a kid, I loved the in-detail descriptions of technology. So maybe more of that, how the CPU works. Like actually go into detail.

by kaos
Wed Nov 23, 2022 7:18 pm
Forum: Lounge
Topic:
Replies: -1
Views:

How to load part of a file into memory?


So its just better to think of "files" as blocks of RAM frozen on disk, that can be thawed and moved back into RAM.. Somehow I really like this idea LOL ?

Edit: I mean, basically they are memory-dumps.

by kaos
Tue Nov 22, 2022 9:29 pm
Forum: Lounge
Topic:
Replies: -1
Views:

How to load part of a file into memory?


Whoaaa... I just read through the C64 DOS commands, and the KERNAL API, and it seems it does not have a concept of a file seek position..? Weird!

One always has to load/save an entire file??

by kaos
Mon Nov 21, 2022 2:43 pm
Forum: Lounge
Topic:
Replies: -1
Views:

Speed Of Bank Switching

The code that checks if it is in ROM or RAM is <blockquote class="ipsQuote" data-ipsquote=""> <div class="ipsQuote_citation"> Quote </div> <div class="ipsQuote_contents"> cmp #$c0 bcc jsrfar1 </div> </blockquote> It adds maybe half a microsecond (or something) to the time it takes to run it. (Edit:...
by kaos
Sun Nov 20, 2022 11:56 pm
Forum: Lounge
Topic:
Replies: -1
Views:

Speed Of Bank Switching

jsrfar seems to be written as a universal JSR-function. If you don't need all the bells and whistles it provides, you can write your own tailored version. jsrfar seems to work even if the caller is in ROM, which is cool. <em>Your code is like 4 times faster than using jsrfar, judging just by the le...
by kaos
Sun Nov 20, 2022 9:07 pm
Forum: CX16 General Chat
Topic: VERA vram -> vram copies on overlapping addresses not working?
Replies: 6
Views: 6632

VERA vram -> vram copies on overlapping addresses not working?


Can you provide a complete code sample that shows this behavior plz?

(Use the forum quote-function to get it somewhat pretty)

by kaos
Sun Nov 20, 2022 6:07 pm
Forum: Introductions
Topic: X16 Assembly Tutorial
Replies: 46
Views: 82857

X16 Assembly Tutorial

I keep returning to this page whenever I want to see how 65c02 assembly works: <a href="https://en.wikibooks.org/wiki/65c02_Assembly" rel="external nofollow">https://en.wikibooks.org/wiki/65c02_Assembly</a> It is easily searchable, and contains (al)most everything useful related to the specifically...