From 821a63c0c219c0365bdfe58ac6699c9d9a2423e3 Mon Sep 17 00:00:00 2001
From: Oliver Schmidt
Date: Sun, 11 Jun 2023 12:23:45 +0200
Subject: [PATCH] Adjusted to cc65/cc65#1844
---
drivers/c64_cps.s | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/c64_cps.s b/drivers/c64_cps.s
index dbecd6ff..1ad88f39 100644
--- a/drivers/c64_cps.s
+++ b/drivers/c64_cps.s
@@ -2,11 +2,11 @@
; CC65's C64 runtime library doesn't provide this function
; this file provides a version in order that clk_timer.s works without 'ifdefs'
-.export __clocks_per_sec
+.export ___clocks_per_sec
.code
-__clocks_per_sec:
+___clocks_per_sec:
lda #60
rts