summaryrefslogtreecommitdiff
path: root/src/port.h
diff options
context:
space:
mode:
authorXavier ASUS <xavi92psx@gmail.com>2019-10-22 02:10:51 +0200
committerXavier ASUS <xavi92psx@gmail.com>2019-10-22 02:10:51 +0200
commit5a0c2910df62b99fee8baec1f4d846217cd9a054 (patch)
tree583963809fe49cbb8b498f6621862589601ba53d /src/port.h
parent958912f9285175ff95bb0070bea603dd8aef8222 (diff)
downloadsdcc-gas-5a0c2910df62b99fee8baec1f4d846217cd9a054.tar.gz
First working example!
stm8/main.c: 0x8000 must contain the entry point aka "_start" for GNU as. Some work on supporting debugging symbols with --gas. Not finished yet.
Diffstat (limited to 'src/port.h')
-rw-r--r--src/port.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/port.h b/src/port.h
index 360e091..fb9f442 100644
--- a/src/port.h
+++ b/src/port.h
@@ -119,10 +119,6 @@ typedef struct
/** return the model string, used as library destination;
port->target is used as model string if get_model is NULL */
const char *(*get_model) (void);
- /** Pointer to GAS (GNU assembler) glue function.
- * If none is available, it means there is no support
- * for this port yet. */
- void (*gas_glue)(void);
}
general;