HackerTrans
TopNewTrendsCommentsPastAskShowJobs

renewedrebecca

no profile record

comments

renewedrebecca
·l’année dernière·discuss
The place I used to work at had a "architect" who would for any question to a decision he made would refer to whatever it was as a "best practice."

Was often quite wrong and always infuriating.
renewedrebecca
·l’année dernière·discuss
Sure, but the point is that you can't treat a zero page address like a register. There's a LDA, LDX, LDY, but no way to load directly to a zero page address. You have to load a real register, then store it in the ZP address.

Zero page isn't a bunch of registers because register operations by and large don't work on them directly.
renewedrebecca
·l’année dernière·discuss
It's really not a bunch of registers though...

If you could so something like LD[$0f] #65 - then yeah, you have registers. But you can't do that sort of thing with zero page. You'd still need to do: LDA #65 STA $0f
renewedrebecca
·l’année dernière·discuss
The 65816 is a pain to code for. It has what's basically a segmented memory architecture with only two segment registers: D (data bank) and P (program bank).

You can't just make a 24-bit pointer w/o doing things using the direct page, which is admittedly a bigger problem for a C compiler than an assembler.

You always have to be able to know what mode the 'A' register is in (8/16) as well as the index registers. These are separate switches. Even disassembling code on the '816 is tainted by this, because for any section of code you look at, you have to know what mode the thing is in to accurately disassemble the code.

So basically, it's a 16-bit processor, sometimes which is a bit maddening.
renewedrebecca
·l’année dernière·discuss
And you'd have to spend a ton of time porting to each target system.

OTOH, the Z80 is better for this, because you can at least get CP/M up and running with a minimum of trouble.
renewedrebecca
·l’année dernière·discuss
When I was in college, they taught the Computer Architecture course using the 68000. Coded GUI stuff on the Mac 128k with assembler, and it was surprisingly easy, especially compared to doing anything with the 8086.
renewedrebecca
·il y a 4 ans·discuss
The masses will never notice because Linux is simply irrelevant to them unless it's on their routers or something.
renewedrebecca
·il y a 4 ans·discuss
The real problem with Gnome is that the user that they are targeting simply doesn't exist. People who need a user friendly environment probably don't need Linux in the first place.
renewedrebecca
·il y a 4 ans·discuss
So what in-production used by tons of people compilers have you built?