Tagged Questions

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.

learn more… | top users | synonyms

17
votes
13answers
2k views

What are your favourite ZX Spectrum development tools?

What are your favourite assemblers, compilers, environments, interpreters for the good old ZX Spectrum?
13
votes
3answers
752 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)?
9
votes
1answer
187 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) ...
7
votes
2answers
212 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 ...
6
votes
1answer
189 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 ...
6
votes
6answers
1k 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 ...
5
votes
2answers
48 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 ...
5
votes
3answers
895 views

Z80 ASM BNF structure… I'm am on the right track?

I'm currently trying to get to grips with BNF and attempting to assemble some Z80 ASM code. Since I'm new to both fields So my question is, Am I even on the right track? I am currently trying to write ...
5
votes
3answers
378 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 ...
4
votes
2answers
402 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 ...
3
votes
1answer
49 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
74 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? ...
3
votes
2answers
113 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 ...
3
votes
0answers
76 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 ...
3
votes
8answers
719 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. ...
3
votes
2answers
621 views

What are the best tools for reverse engineering z80 machine code?

A particular assembler/disassembler or something else entirely?
2
votes
3answers
186 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
2
votes
4answers
180 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 ...
2
votes
3answers
926 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 ...
2
votes
6answers
612 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 ...
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 ...
1
vote
2answers
56 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 ...
1
vote
3answers
341 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 ...
0
votes
3answers
68 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 ...
0
votes
1answer
68 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, ...
0
votes
2answers
61 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 ...
0
votes
3answers
260 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 ...