Skip to content

Commit

Permalink
Run bin/endproc over the files. No binary changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
inexorabletash committed Nov 17, 2023
1 parent 05c422e commit 9ec400d
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions desk.acc/show.image.file.s
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ is_iigs:
.popcpu

rts
.endproc
.endproc ; InitSHR

;; --------------------------------------------------

Expand Down Expand Up @@ -1034,7 +1034,7 @@ loop:
bne loop

rts
.endproc
.endproc ; PopulateSHR

;; --------------------------------------------------

Expand All @@ -1054,7 +1054,7 @@ loop:
.popcpu

rts
.endproc
.endproc ; ExitSHR

.endproc ; ShowSHR

Expand Down
2 changes: 1 addition & 1 deletion desk.acc/sounds.s
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ dialog_result:
lda original_index
jsr InstallIndex
jmp Exit
.endproc
.endproc ; DoCancel

;;; ============================================================
;;; Resources
Expand Down
4 changes: 2 additions & 2 deletions desk.acc/this.apple.s
Original file line number Diff line number Diff line change
Expand Up @@ -1846,7 +1846,7 @@ ready: pla
sta (ptr),y ; actually write to the register
clc
rts
.endproc
.endproc ; sendbyte

;; Read byte into A, or carry set if timed out
.proc readbyte
Expand Down Expand Up @@ -1874,7 +1874,7 @@ ready: ldy #RDREG
lda (ptr),y ; actually read the register
clc
rts
.endproc
.endproc ; readbyte

;;; SSC Signature
sig_offset: .byte $05, $07, $0B, $0C
Expand Down
2 changes: 1 addition & 1 deletion desktop/lc.s
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ fail: sec
jmp BankInMain

tmpw: .word 0
.endproc
.endproc ; MaybeOffsetUpdatePort


;;; ============================================================
Expand Down
2 changes: 1 addition & 1 deletion desktop/ovl_file_copy.s
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
COPY_BYTES file_dialog::kJumpTableSize, jt_callbacks, file_dialog::jump_table

jmp file_dialog::EventLoop
.endproc ; Init
.endproc ; Run

saved_stack:
.byte 0
Expand Down
2 changes: 1 addition & 1 deletion desktop/ovl_selector_edit.s
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ kCopyNever = 3 ; corresponds to `kSelectorEntryCopyNever`

buffer: .res 16, 0

.endproc ; Init
.endproc ; Run

;;; ============================================================

Expand Down
4 changes: 2 additions & 2 deletions desktop/res.s
Original file line number Diff line number Diff line change
Expand Up @@ -628,10 +628,10 @@ icon_param: .byte 0

;;; Used by IconTK::AllocIcon and IconTK::GetIconEntry
;;; TODO: See if we can use `icon_param` for this
.proc get_icon_entry_params
.params get_icon_entry_params
id: .byte 0
addr: .addr 0
.endproc
.endparams

;;; ============================================================
;;; Alerts
Expand Down
6 changes: 3 additions & 3 deletions disk_copy/auxlc.s
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ do_jump:
param_call DrawTitleText, label_quick_copy

ret: rts
.endproc
.endproc ; CmdQuickCopy

.proc CmdDiskCopy
lda disk_copy_flag
Expand All @@ -949,7 +949,7 @@ ret: rts
param_call DrawTitleText, label_disk_copy

ret: rts
.endproc
.endproc ; CmdDiskCopy

;;; ============================================================

Expand Down Expand Up @@ -1178,7 +1178,7 @@ try_dos33:
tya

rts
.endproc
.endproc ; GetDriveNameTableSlot

;;; ============================================================
;;; Check block at `default_block_buffer` for Pascal signature
Expand Down
4 changes: 2 additions & 2 deletions inc/macros.inc
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,7 @@ loop: lda src,x

.macro END_PROC_AT
.poporg
.endproc
.endproc ; name
.endmacro


Expand Down Expand Up @@ -1012,7 +1012,7 @@ __pushorg_depth__ .set 0
.endmacro

.macro .endparams
.endproc
.endproc ; label
.endmacro


Expand Down
4 changes: 2 additions & 2 deletions selector/app.s
Original file line number Diff line number Diff line change
Expand Up @@ -1574,7 +1574,7 @@ use_entry_path:
jsr GetSelectorListPathAddr

FALL_THROUGH_TO LaunchPath
.endproc
.endproc ; InvokeEntry

;;; ============================================================
;;; Launch specified path (A,X = path)
Expand Down Expand Up @@ -1694,7 +1694,7 @@ check_path:
MLI_CALL QUIT, quit_params
brk

.endproc ; InvokeEntry
.endproc ; LaunchPath

DEFINE_QUIT_PARAMS quit_params

Expand Down
2 changes: 1 addition & 1 deletion toolkits/btk.s
Original file line number Diff line number Diff line change
Expand Up @@ -597,4 +597,4 @@ unchecked_cb_bitmap:
;;; ============================================================
.endif ; BTK_SHORT

.endscope
.endscope ; btk

0 comments on commit 9ec400d

Please sign in to comment.