Changes for page API контроллеров AZ®
Last modified by Max on 2025/03/02 15:18
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -445,63 +445,62 @@ 445 445 446 446 {{code language="assembler"}} 447 447 ;.................................. 448 -RdBuf=015; symbolicnameof the command448 +RdBuf=015; символическое наименование команды 449 449 450 -; InR3fromthepreviousfragmentthereis the address of theCSR450 +; В R3 от предыдущего фрагмента остался адрес CSR 451 451 ; (177220) 452 452 453 -; WeassumethatinR2wehavetheaddress of the first word454 -; of memory,wherethereadblockshould be placed.455 -; Theprogramforobtainingthisaddress is not given.453 +; Считаем, что у нас в R2 находится адрес первого слова 454 +; памяти, куда следует разместить прочитанный блок. 455 +; Программа получения этого адреса не приводится. 456 456 457 - MOV #400,R1; Preparetheword counter457 + MOV #400,R1; Готовим счетчик слов 458 458 ; 0400 oct = 256 dec 459 459 460 - MOV #RdBuf,(R3)+; andsendthe command461 -; RdBuf totheCSR.TheaddressinR3willpointtoDR (177222).460 + MOV #RdBuf,(R3)+; и пересылаем команду 461 +; RdBuf в CSR. Адрес в R3 укажет на DR (177222). 462 462 463 -3$: MOV @R3,(R2)+ wewillsendthe next word to464 -; memory465 - SOB R1,3$; andrepeatthis256 (0400)466 - ; times463 +3$: MOV @R3,(R2)+;перешлем очередное слово в 464 + ; память 465 + SOB R1,3$; и повторим это 256 (0400) 466 + ; раз 467 467 ;.................................. 468 468 {{/code}} 469 469 470 -That's it, reading is complete. 470 +Всё, чтение закончено. 471 +\\Для записи наоборот, требуется сначала перенести весь блок данных из памяти ЦП в контроллер и потом выдать команду "Записать содержимое буфера на диск" 471 471 472 -To write the opposite way, you first need to transfer the entire data block from the CPU memory to the controller and then issue the command "Write the contents of the buffer to disk" 473 473 474 +== **016: Принять блок данных в буфер** == 474 474 475 -== 016: Receive data block into buffer == 476 +Код команды 016. Команда настраивает контроллер на прием блока данных и помещении его в буфер. Следующие 256 циклов записи в DR поместят данные, переданные через МПИ, в буфер. 477 +\\Пример программы. 476 476 477 -Command code 016. The command sets the controller to receive a block of data and place it in the buffer. The next 256 write cycles to DR will place the data transferred via the QBUS in the buffer. 478 -\\Example program: 479 - 480 480 {{code language="assembler"}} 481 481 ;.................................. 482 482 483 -WrBuf=016; Symbolicnameof the command482 +WrBuf=016; Символическое наименование команды 484 484 485 -; Beforewriting,youneedtoperformthesameactionsas in486 -; pp. 3.1.-3.3.Usually,thisisthesameprogram,487 -; justafterpoint3.3.acheckis performed"What488 -; is required:readingorwriting?"andabranch is made to the489 -; readingorwritingprogram.484 +; Перед записью нужно выполнить те же действия, что и в 485 +; пп. 3.1.-3.3. Обычно, это одна и та же программа, 486 +; просто после пункта 3.3. выполняется проверка "Что 487 +; требуется: чтение или запись?" и разветвление на 488 +; программу чтения или записи. 490 490 491 -; Afterthefragmentinpoint3.3.,theCSRaddress492 -; (177220) remains in R3.WewillassumethatR2containstheaddress in the CPU493 -; memorywheretheblocktobewritten is located.494 -; Theprogramforobtainingthisaddress is not shown.490 +; После фрагмента в п. 3.3. в R3 остался адрес CSR 491 +; (177220). Будем считать, что в R2 находится адрес в 492 +; памяти ЦП, где находится блок, подлежащий записи. 493 +; Программа получения этого адреса не показана. 495 495 496 - MOV #400,R1; Preparing the counter495 + MOV #400,R1; Готовим счетчик 497 497 498 - MOV #WrBuf,(R3)+; Let'sforwardthe command to theCSRand499 - ;switchtheaddressinR3to500 -; DR 497 + MOV #WrBuf,(R3)+; Перешлем команду в CSR и 498 + ; переключим адрес в R3 на 499 + ; DR 501 501 502 -4$: MOV (R2)+,@R3; Let'sforward the next word503 -; data504 - SOB R1,4$; andrepeatthis256times501 +4$: MOV (R2)+,@R3; Перешлем очередное слово 502 + ; данных 503 + SOB R1,4$; и повторим это 256 раз 505 505 ;.................................. 506 506 {{/code}} 507 507