Hi
Disassembly view is not working in CCS V5.2 (or for that matter V5 as opposed to V4 or V3.3).
Can someone give me a simple example running on "whatever simulator" where this functionality works.
Am I missing something? a plug-in?
Many thanks
Dan
Details:
---------
After multiple tries with my emulator, I cannot get anything to be displayed in the disassembly view.
So instead I tested on the C64+ accurate simulator (see test code below) and still the same result.
CCS V4 displays the disassembly code as usual, CCS V5 displays nothing .
Apart from that, all views are fine (source code, variables, memory, registers, etc..).
The only hint of error is debug context. This is easily suppressed by using the icon "pin to debug context".
=========================================
build : config debug
Compiler version: CCS V4: 7.2.3 CCS V5: 7.3.5
here is the test code
//---------------------------------------
#include <stdio.h>
#include <stdlib.h>
#define ASIZE 8
int xBUF[ASIZE];
void main(void){
int j;
int x,z;
for(j = 0; j < ASIZE; j++)
xBUF[j]=10-j;
z=255;
for(j = 0; j < ASIZE; j++){
x=xBUF[j];
z = (z>x)?x:z;
printf("%d \n",z);
}
}
==========================================

