The Z80 is an 8-bit CPU designed by Zilog to be compatible with the Intel 8080 but with an enhanced instruction set. It has been in continuous wide use since 1976 and was formerly popular in microcomputers. Presently its main use is in embedded systems.
0
votes
2answers
23 views
How to write a custom assembly compiler (sort of) in VB.NET
I've been trying to write a simple script compiler for a custom language used by the Game Boy Advance's Z80 processor.
All I want it to do is look at a human-readable command, take it and its ...
0
votes
3answers
81 views
How can I get started with Z80?
I have a bit of experience with Arduino and Java. I know the Z80 has a lot of potential, but I don't have the slightest idea where to start. What advice do you have for a beginner like me?
0
votes
1answer
49 views
Pointer converter returning incorrect values
I'm trying to create a Z80 offset-pointer converter, but when I compile the program and test it, the output variables come out as zero.
The math behind it goes like this:
Take the offset that you ...
2
votes
2answers
81 views
How do I convert a hexadecimal offset to a two-byte pointer in VB.NET?
I'm working on a specialty hexadecimal editor that includes a Z80 two-byte pointer converter.
The mathematics behind the conversion are like so:
Take the offset that you wish to point to.
Take the ...
3
votes
0answers
47 views
ti-84: call a function from the catalog with z88dk
I'm programming my ti-84 in C with z88dk. I need to call things like normalcdf and Ztest. I know they can be called from ti-BASIC, but how do i call them from C or inline assembly?
2
votes
1answer
109 views
sdcc not accepting code
I have an issue with SDCC. My code (which I am attempting to port from another compiler) uses structs with flexible array members. However, when I try to compile the following code:
/** header of ...
0
votes
2answers
176 views
Single pass z80 assembler (source or useable on windows)
I have recently got my hands on a Z80 system and have been writing a dissasmbler for a debugger (pushing in instructions that are pulled from the memory of the Z80y). I can get the instruction however ...
0
votes
1answer
71 views
m80 macro assembler org directive
I am using Microsoft's ancient m80 macro assembler and haven't run into any major problems for a while.
However, I am now trying to use the ORG directive with a hex number and it fails.
This works:
...
1
vote
3answers
97 views
Why emulate for certain number of cycles?
I have seen in more than one places - the following way of emulating
i.e cycles is passed into emulate function
int CPU_execute(int cycles) {
int cycle_count;
cycle_count = cycles;
do {
...
1
vote
1answer
72 views
Z80 DAA flags affected
In the following link,
http://www.z80.info/z80syntx.htm#DAA
I got confused over the condition for setting H flag. The description says to look at the table but unlike C where there is the column C ...
1
vote
1answer
59 views
How does AND operation in Z80 cpu overflow?
I am referencing zilog z80 manual and i am little puzzled reading at AND instruction. It says in the 'condition bits affected' section, P/V flag is set if the operation overflows. I can understand how ...
1
vote
0answers
166 views
Unsure how this z80 assembly code outputs to a screen? [closed]
The code is a common test bench mark for z80 emulators called ZEXDOC.
>>>code link<<<
I want to test my emulator, so i'm reading through it, and can see it is setting strings for output. But ...
1
vote
1answer
88 views
How to output current value of flags register Z80?
I want to debug my program, but I need to know the value of the flags register,
but im stuck figuring out the instructions to do so. For z80 processor.
[My only guess is to use jp *, nn and then set ...
3
votes
2answers
211 views
Designing a boot loader for simple Z80 system via UART, Where To Load the Program
I've started writing a boot loader for my z80 system.
So far the program can accept hex via serial and load it to a location in the memory.
The problem I have though is the boot loader is at the ...
3
votes
1answer
215 views
Minimal assembler program for CP/M 3.1 (z80)
I seem to be losing the battle against my stupidity.
This site explains the system calls under various versions of CP/M.
However, when I try to use call 2 (C_WRITE, console output), nothing much ...
0
votes
2answers
118 views
Z80 how are different program blocks loaded at different locations in memory?
My Question
Building the code below i get:
"319920C30020C30A20FBED563E00C600CA0520F33E55D3073E00FBC9"
My Problem is I assumed that this would be padded with zeros such that each block of code is at ...
2
votes
1answer
108 views
z80 assembler issues with “IM 1” instruction
Code
STACK .EQU 2099H
.ORG 0000H
ld SP, STACK
jp 2000H
.ORG 0038H
jp service_routine
.ORG 2000H
EI
IM 1 ; <------- THIS LINE
LD A, 00H
LOOP:
ADD A, 00H
jp ...
1
vote
2answers
131 views
z80 flags - how to generate?
I'm designing a z80 compatible project. I'm up to designing the flags register.
I originally thought that the flags were generated straight from the ALU depending on the inputs and type of ALU ...
1
vote
0answers
90 views
HP to TI calculator link… Is it possible with/without assembly programming?
I have a HP50g and TI84 calculator, and was curious about the possibility to link them, writing a program to send numbers/strings/data. Both can be linked via USB, but the TI uses its own special ...
12
votes
1answer
466 views
Zilog Z80 OP-Code implementation
I'm currently developing an emulator for the good old GameBoy and I'm facing some problems understandig how some basic operation codes have to be implemented.
Right now I'm implementing the AND ...
0
votes
3answers
413 views
Z80 Asm - Hex How to Create a String
I prefer to code on my calculator in hex. I know my opcodes and what not, but i'm not sure how to create a string "hello" in register HL. Cany you help? I have googled it, but it's hard to find an ...
8
votes
2answers
1k views
GBZ80: What constitutes a “half-carry”?
The Game Boy Z80 CPU has a half-carry flag, and I can't seem to find much information about when to set/clear it.
What I understand so far is that any 8-bit add, subtract, shift, or rotate operation ...
3
votes
4answers
396 views
Z80 memory refresh register
Me again with another innocuous Z80 question :-) The way my emulator core is currently structured, I am incrementing the lower 7 bits of the memory refresh register every time an opcode byte is ...
4
votes
2answers
223 views
Undocumented 16-bit I/O addressing on Z80
I notice from the Zilog datasheet on the Z80 that with the I/O (IN and OUT) group of instructions, the contents of various registers are often placed in the top 8 bits of the address bus (depending on ...
3
votes
2answers
395 views
half-carry/half-borrow flag in DAA instruction
Apologies for making this my second Z80 DAA question - I have pretty much implemented this instruction now, but there is one thing I'm not sure about - is the H flag set by this instruction at all? ...
1
vote
3answers
530 views
Zilog Z80 - How to use Interrupt mode 1 (IM 1 Instruction)
I want to use IM 1 interrupt mode on Z80.
In Interrupt mode 1 processor jumps to 38h address in memory(am I right?) and then continues interrupt. How can I specify this in my code?
I have read ...
3
votes
2answers
635 views
Z80 DAA instruction
Apologies for this seemingly minor question, but I can't seem to find the answer anywhere - I'm just coming up to implementing the DAA instruction in my Z80 emulator, and I noticed in the Zilog manual ...
9
votes
1answer
2k views
Overflow and Carry flags on Z80
I have gotten round to implementing the ADD A,r set of opcodes on my Z80 core. I had a bit of confusion about the carry and overflow flags which I think I've nailed, but I wanted to put it to the ...
1
vote
1answer
237 views
Convert a string of tokens into a string of ASCII values [TI-83+ ASM]
I'm writing a program in assembler for the TI-83+ calculator, and there's one feature that I want, but I cannot figure out how I would execute it.
I have retrieved the string from the Ans variable, ...
8
votes
3answers
832 views
Java timing accuracy on Windows XP vs. Windows 7
I have a bizarre problem - I'm hoping someone can explain to me what is happening and a possible workaround. I am implementing a Z80 core in Java, and attempting to slow it down, by using a ...
1
vote
2answers
252 views
Question about cycle counting accuracy when emulating a CPU
I am planning on creating a Sega Master System emulator over the next few months, as a hobby project in Java (I know it isn't the best language for this but I find it very comfortable to work in, and ...
10
votes
1answer
352 views
TI assembly newbie
I'm new to the ti programming plaform. I hope to get some pointers on what's my best route for this.
I'm required to produce a series of arithmetic and graphing functions compatible across ti 83(p) ...
2
votes
3answers
377 views
GBZ80: How does LD HL,(SP+e) affect H and C flags?
On Gameboy Z80, exactly how does the LD HL,(SP+e) operation affect H and C flags? (Half-carry + carry)
Reference: http://www.devrs.com/gb/files/opcodes.html
0
votes
3answers
474 views
Z80 assembly language - sign flag after INC r
one thing with Z80 assembly language bothers me. Does sign flag always represent the sign of the value of the A register? I mean, when I run 'INC B', the result goes back to B, so is the sign flag ...
1
vote
3answers
572 views
Are bytes/words/addresses signed or unsigned in Z80 assembler/machine code?
I am making an emulator for Z80 binaries but I cannot find out whether all the integer data types are signed or unsigned from the manual or from google. So are the numbers from registers A,B...HL,BC ...
3
votes
0answers
148 views
I wired up a z 80 using telephone wire and put a jump to 0000 0000 0000 0000 [closed]
I put 1100 0011 0000 0000 0000 0000 in the 2764 eprom --- this is supposed to test the z80 -- I have a 555 timer running at 500 khz. Can this small program work with the z80 ? I looked at the ...
2
votes
4answers
277 views
Looking for programs on audio tape/cassette containing programs for Sinclair ZX80 PC?
OK, so back before ice age, I recall having a Sinclair ZX80 PC (with TV as a display, and a cassette tape player as storage device).
Obviously, the programs on cassette tapes made a very distinct ...
3
votes
9answers
1k views
Equivalents to Z80 DJNZ instruction on other architectures?
First a little background. The z80 CPU has an instruction called DJNZ which can be used in a similar manner as a for loop. Basically DJNZ decrements the B register and jumps to a label if not zero. ...
17
votes
3answers
2k views
Z80: How to add 16 and 8 bit registers?
How do you add a 16 and a 8 bit register with carry (for example, HL, and A)?
4
votes
2answers
512 views
Z80 (TI-83+) stops working on CALL
Every time I assemble an application for the TI-83+ calculator (Z80 processor), it stops running at CALL. Here is an example ("Hello") — it starts running just fine, but the calculator freezes at the ...
6
votes
3answers
1k views
Z80 ASM BNF structure… am I on the right track?
I'm trying to learn BNF and attempting to assemble some Z80 ASM code. Since I'm new to both fields, my question is, am I even on the right track? I am trying to write the format of Z80 ASM as EBNF so ...
2
votes
3answers
2k views
Writing an z80 assembler - Lexing ASM and building a parse tree using composition?
I'm very new to the concept of writing an assembler and even after reading a great deal of material, I'm still having difficulties wrapping my head around a couple of concepts.
1) What is the process ...
7
votes
7answers
2k views
I need some help to start writing a graphical z80 emulator in c or c++
I want to take an interest in writing my own simple emulator for the z80 processor. I have no experience with this type of programming. I am mostly fine with using c-based languages as they are the ...
2
votes
6answers
701 views
Quick divisibility check in ZX81 BASIC
Since many of the Project Euler problems require you to do a divisibility check for quite a number of times, I've been trying to figure out the fastest way to perform this task in ZX81 BASIC.
So far ...
5
votes
3answers
429 views
Is there a free/demo version of COBOL with multi-user support?
I have been using COBOL 85 for a long time, including work with merging COBOL and Z80 assembly. However traditional COBOL doesn't support multi-user/shareable (ie can run concurrently from various ...
2
votes
14answers
2k views
Why is there no Z80 like LDIR functionality in C/C++/rtl?
In Z80 machine code, a cheap technique to initialize a buffer to a fixed value, say all blanks. So a chunk of code might look something like this.
LD HL, DESTINATION ; point to the ...
3
votes
2answers
1k views
What are the best tools for reverse engineering z80 machine code?
A particular assembler/disassembler or something else entirely?
23
votes
13answers
3k views
What are your favourite ZX Spectrum development tools?
What are your favourite assemblers, compilers, environments, interpreters for the
good old ZX Spectrum?