The DCPU-16 is a simple 16-bit CPU used for the 0x10^c game by Notch.
1
vote
0answers
207 views
Trying to do a simple “hello world” program in DCPU-16
I'm studying the DCPU-16's asm, and I started with a simple hello world program. Here it is:
hwn i
set j, 0
jsr get_display
:init_display
set a, 0
set b, 0x8000
hwi [display_adress]
set i, 0
...
1
vote
1answer
87 views
DCPU-16 Bitwise Shifting
I am trying to learn DCPU and prior to this i haven't dabbled with binary so bare with me...
;Set b to 1
SET B,1 ;00001 (1)
SHL B,1 ;00010 (2)
SHL B,1 ;00100 (4)
SHL B,1 ;01000 (8)
SHL B,1 ;10000 ...
1
vote
1answer
147 views
How to best get a character from the keyboard on the DCPU16
So, my goal is the write a subroutine that when called hangs until the user has entered a string terminated by <return>, which it then returns(probably by writing it to an address specified by ...
2
votes
2answers
232 views
DCPU-16 won't accept input from keyboard
I've started learning assembly for the DCPU-16 to prepare for 0x10c, but upon arriving at the conclusion of the tutorial I was running through, I found that the program wasn't responding to keyboard ...
2
votes
1answer
139 views
Keeping track of original line numbers through macro expansion
I'm working on a assembler for fun, written in C,flex,bison. I'd like to add macros, includes and repeating blocks and was thinking of doing this with a separate preprocessing stage parser.
My ...
0
votes
1answer
170 views
XNU Kernel clone in DCPU-16
https://github.com/galaxas0/MachX-Kernel
Before I embark on a project designed to fail, I'd like to set things straight so they don't fail, by asking a simple question: how on earth would a DCPU-16 ...
0
votes
1answer
124 views
How does IFN A, 0x10 translate to 0xc00d in the original spec for DCPU 16
I'm attempting to write an assembler for Notch's DCPU-16 spec.
The original spec for this CPU can be found here.
The relevant lines:
SET A, 0x30 ;7c01 0030
...
IFN A, 0x10 ;c00d
I understand ...
1
vote
2answers
117 views
SET A, 0x1E vs SET A, 0x1F
This is my first attempt at dpcu, I'm checking machine code generated by dpcu-16 assembly
I am using this emulator : http://dcpu.ru/
I am trying to compare code generated by
SET A, 0x1E
SET A, 0x1F
...
4
votes
1answer
336 views
How did turbo pascal overlays work?
I'm implementing an assemblinker for the 16-bit DCPU from the game 0x10c (http://0x10c.com/doc/dcpu-16.txt).
One technique that somebody suggested to me was using "overlays, like in turbo pascal back ...
1
vote
2answers
318 views
How should I add a preprocessor to a flex+bison assembler?
I have written a simple assembler using flex+bison. I'd like to add a preprocessor (macros) to the assembly language. This is my first time trying to use flex+bison, I'm not sure how to go about this.
...
6
votes
1answer
213 views
Signed arithmetic/control-flow in DCPU-16?
DCPU-16 (the CPU in Notch's new game) doesn't seem to have any signed IF/MUL/DIV instructions.
Is there still a way to do signed arithmetic/control-flow that isn't super incredibly painful?
2
votes
2answers
235 views
Writing RC4 for a 16 bit system
I am writing RC4 for the DCPU-16, however I have some questions before I begin.
RC4 algorithm:
//KSA
for i from 0 to 255
S[i] := i
endfor
j := 0
for i from 0 to 255
j := (j + S[i] + key[i ...
2
votes
2answers
246 views
Why is there a leading 1 in the binary representation of DCPU-16 instructions
I'm currently fiddling around with DCPU-16 assembler (see http://0x10c.com/doc/dcpu-16.txt and http://jazzychad.net/dcpu.html).
There is one thing I don't understand in the way the assembler ...
1
vote
1answer
134 views
Writing a stream cipher for DCPU-16, which should I focus on given it's limitations?
For fun I am writing a stream cipher in assembly for the DCPU-16 (the fictional CPU for the game 0x10c). The processor only has 16 bit registers and it runs at 100 Khz. However, for now, memory access ...
3
votes
2answers
279 views
DCPU-16 DIV instruction
I'm looking at the specification for the DCPU-16 and I'm having trouble understanding the purpose of the overflow value with the DIV instruction:
DIV a, b - sets a to a/b, sets O to ...
10
votes
4answers
380 views
Portability of C code for different memory addressing schemes
If I understand correctly, the DCPU-16 specification for 0x10c describes a 16-bit address space where each offset addresses a 16-bit word, instead of a byte as in most other memory architectures. This ...
9
votes
4answers
914 views
Is a preemptive multitasking OS possible on the interruptless DCPU-16?
I am looking into various OS designs in the hopes of writing a simple multitasking OS for the DCPU-16. However, everything I read about implementation of preemptive multitasking is centered around ...
4
votes
1answer
1k views
Optimizing DCPU-16 FizzBuzz
I tried to implement FizzBuzz in DCPU-16. I use this web emulator: http://mappum.github.com/DCPU-16/ (repository: https://github.com/mappum/DCPU-16).
It stops before the end of the loop. Why?
How ...
5
votes
1answer
1k views
is DCPU-16 assembler 'dat' with a string supposed to generate a byte or word per character?
It's not clear to me whether
dat "Hello"
is supposed to generate 5 words or 3 (with one byte of padding)
8
votes
1answer
383 views
What is the appropriate Racket/Scheme idiom for this code?
I'm new to racket/scheme, so i decided to learn by implemeting an emulator for the DCPU-16, a simple 16 bit processor.
My question is thus: What is a better way to implement my solution?
This is ...
7
votes
2answers
725 views
Can you write to [PC]?
According to the DCPU specification, the only time a SET instruction fails is if the a value is a literal.
So would the following work?
SET [PC],0x1000
A more useful version would be setting an ...
8
votes
1answer
585 views
How to understand the first line of the DCPU-16 specs assembly example?
I am trying to understand the specs, but fail to understand the first line of the example given:
SET A, 0x30 ; 7c01 0030
Here is what I understood from the specs:
the first word ...
25
votes
2answers
2k views
Are the I and J registers special in DCPU-16?
DCPU-16 includes 8 general registers named A, B, C, X, Y, Z, I and J. It's a bit of a programmer "trope" to use I and J for loop counters. In DCPU-16, are I and J specialized registers, that should ...