Changed multi-line C comments into another style.

The left side doesn't look unbalanced.
This commit is contained in:
Greg King
2014-06-30 05:10:35 -04:00
parent 132d57f1ad
commit 0390c34e88
502 changed files with 8869 additions and 8884 deletions

View File

@@ -114,9 +114,9 @@ static const char* LabelPlusOffs (const char* Label, long Offs)
static const char* RelocExpr (const O65Data* D, unsigned char SegID,
unsigned long Val, const O65Reloc* R)
/* Generate the segment relative relocation expression. R is only used if the
* expression contains am import, and may be NULL if this is an error (which
* is then flagged).
*/
** expression contains am import, and may be NULL if this is an error (which
** is then flagged).
*/
{
const O65Import* Import;
@@ -346,10 +346,10 @@ static void ConvertZeropageSeg (FILE* F, const O65Data* D)
if (Model == O65_MODEL_CC65_MODULE) {
/* o65 files of type cc65-module are linked together with a definition
* file for the zero page, but the zero page is not allocated in the
* module itself, but the locations are mapped to the zp locations of
* the main file.
*/
** file for the zero page, but the zero page is not allocated in the
** module itself, but the locations are mapped to the zp locations of
** the main file.
*/
fprintf (F, ".import\t__ZP_START__\t\t; Linker generated symbol\n");
fprintf (F, "%s = __ZP_START__\n", ZeropageLabel);
} else {
@@ -372,8 +372,8 @@ void Convert (const O65Data* D)
char* Author = 0;
/* For now, we do only accept o65 files generated by the ld65 linker which
* have a specific format.
*/
** have a specific format.
*/
if (!Debug && D->Header.mode != O65_MODE_CC65) {
Error ("Cannot convert o65 files of this type");
}
@@ -382,9 +382,9 @@ void Convert (const O65Data* D)
PrintO65Stats (D);
/* Walk through the options and print them if verbose mode is enabled.
* Check for a os=cc65 option and bail out if we didn't find one (for
* now - later we switch to special handling).
*/
** Check for a os=cc65 option and bail out if we didn't find one (for
** now - later we switch to special handling).
*/
for (I = 0; I < CollCount (&D->Options); ++I) {
/* Get the next option */