From cbe5e69aa1bedce931dad82ea45941c8b1f00a01 Mon Sep 17 00:00:00 2001
From: Thomas Harte <thomas.harte@gmail.com>
Date: Fri, 8 Dec 2023 23:56:43 -0500
Subject: [PATCH] Add exposition.

---
 Storage/Disk/DiskImage/Formats/NIB.cpp | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/Storage/Disk/DiskImage/Formats/NIB.cpp b/Storage/Disk/DiskImage/Formats/NIB.cpp
index 1e1b0e3e8..b9c9d1834 100644
--- a/Storage/Disk/DiskImage/Formats/NIB.cpp
+++ b/Storage/Disk/DiskImage/Formats/NIB.cpp
@@ -90,6 +90,11 @@ std::shared_ptr<::Storage::Disk::Track> NIB::get_track_at_position(::Storage::Di
 				end = (end + track_data.size() - 1) % track_data.size();
 				sync_locations.insert(end);
 			}
+
+			// Experimental!! Permit only one run of sync locations.
+			// That should synchronise the Disk II to the nibble stream
+			// such that it remains synchronised from then on. At least,
+			// while this remains a read-only format.
 			break;
 		}
 	}