Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Keoni29

Pages: 1 ... 17 18 [19] 20 21 ... 168
271
Web Programming and Design / Re: js - Relative Jump Calculator
« on: July 11, 2014, 12:44:46 pm »
I wrote this for myself because the assembler on the power cartridge for my commodore64 does not support labels. It's a one-line assembler: assembles a line after you type it and hit return.

272
Web Programming and Design / js - Relative Jump Calculator
« on: July 11, 2014, 05:06:37 am »

It does exactely what you think it'd do. Enter the start and end address and it calculates the offset for you. It takes the 2 byte offset in account required for most branch instructions (eg. z80 or 6502 branch instructions)
http://jsfiddle.net/4h5YD/22/

273
Minecraft Discussion / Re: Minecraft or Minetest ?
« on: July 10, 2014, 06:14:06 pm »
I played it for a bit. There's not much to it. The engine is better than minecraft alpha's, but it lacks a lot of features.

274
Other / Re: C64 Programming Adventures
« on: July 10, 2014, 12:48:16 pm »
Simple interrupt-driven border flasher:
Code: [Select]
setup=*
sei
lda #<intcode
sta 788
lda #>intcode
sta 789
cli
rts
intcode=*
inc $d020
jmp $ea31
Hex:
Code: [Select]
78 A9 0D 8D 14 03 A9 10
8D 15 03 58 60 EE 20 D0
4C 31 EA




Read NES controller on userport (special hardware required)
Hex only for now...
Result is stored at $0002
Code: [Select]

A9 01 85 FB A9 06 8D 03
DD A9 02 8D 01 DD A2 08
A9 00 8D 01 DD 06 02 AD
01 DD A0 04 8C 01 DD 25
FB 05 02 85 02 A0 00 8C
01 DD CA D0 E8 60

275
Other / Re: C64 Programming Adventures
« on: July 10, 2014, 06:13:09 am »
And I'm not that good at 6502 assembly yet. The most complex thing I made so far is a sprite which you can move using the joystick.

276
Other / Re: C64 Programming Adventures
« on: July 09, 2014, 05:33:36 pm »
Yet another member owns a commodore 64 now. I found a whole stack of commodore stuff in a thriftshop including 3 disk drives, 2 cartridges, a datasette and ofc. a commodore 64.  aeTIos came over to my place today and came to pick it up. Expect more software to be released soon!


Left: me, right: aeTIos.

277
Casio Calculators / Re: [PRIZM] Cookie Clicker
« on: July 09, 2014, 10:14:28 am »
Being bored is probably the best way to come up with awesome projects.

278
Gaming Discussion / Re: Your best video game pickups.
« on: July 08, 2014, 02:10:15 pm »
Mario kart Wii is still awesome though :D

279
Humour and Jokes / Re: Weird/funny pictures thread
« on: July 06, 2014, 07:45:27 pm »
Smoke weed every day.

280
Gaming Discussion / Re: Your best video game pickups.
« on: July 06, 2014, 06:21:29 pm »
No it does not because the c64 datasette digitizes the sound internally.

281
Gaming Discussion / Re: Your best video game pickups.
« on: July 06, 2014, 06:52:32 am »
The mp3 method is also more reliable. My MSX home computer only has a casette drive for input, so I play TAP files directly on my pc soundcard. It takes just as long as with casettes. I could get a cartridge that allows me to hook up CF cards though. I have one battery backed up ram cartridge for the MSX, but I think it does not work with my version of basic.

282
Web Programming and Design / Re: eZ8 programming website
« on: July 06, 2014, 06:49:55 am »
I think this website could easily be hosted on an eZ80 or maybe even an eZ8. It's mostly text and very little images. For images I'd use a different machine though.

283
Web Programming and Design / Re: eZ8 programming website
« on: July 05, 2014, 04:56:11 pm »
I noticed the website is still very usable in a text-only browser. I made some tweaks so it's a bit more user-friendly. I moved the menu bar to the bottom of the page.You usually skip trough these links so you can read the text anyways.



Browser is elinks. To get it to look just like this picture you need to enable 256 color mode.

284
Web Programming and Design / Re: HTML5 Server Temperature Graph
« on: July 04, 2014, 04:27:17 am »
The script now captures cpu usage as well, but I have not added it to the graph yet. I should make a more detailed graph for cpu usage ,because it fluctuates more than the temperature. This implies that the datalogger script should run more often.


I added a temperature alarm that makes a sound when the cpu overheats. When it's above the critical threshold the server will automatically reboot. The alarm only sounds during the day so I don't wake up anyone. This is to make sure my dad does not throw out the server :P When a critical temperature occurs at night it will simply reboot or shut down (depends on the temperature)

285
Web Programming and Design / Re: Blog Redesign - 8times8
« on: July 03, 2014, 06:07:17 pm »
I finally managed to find out why the server kept overheating when I ran the telnet.php script. I am so glad this madness is over now! The server temperature graph is gonna look somewhat boring from now on though.
Server temperature graph for this day:


Update: Telnet shellscript
Bugfixes:
+ Server no longer overheats when you close the connection in the middle of a stream.


The telnet server is open for public again!


Pages: 1 ... 17 18 [19] 20 21 ... 168