<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: IBM MTM 2019: Part Three – Challenge #11</title>
	<atom:link href="https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/feed/" rel="self" type="application/rss+xml" />
	<link>https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ibm-mtm-2019-part-three-challenge-11</link>
	<description>Improving my programming skills step by step. You&#039;re invited!</description>
	<lastBuildDate>Wed, 20 May 2020 17:51:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.9.14</generator>
	<item>
		<title>By: Will</title>
		<link>https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/#comment-1349</link>
		<dc:creator><![CDATA[Will]]></dc:creator>
		<pubDate>Tue, 25 Feb 2020 13:18:13 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=1388#comment-1349</guid>
		<description><![CDATA[Hi Keven, I&#039;m enjoying your Blog. If you, or anyone else is interested I would suggest a better way of going about Challenge # 11, is to put the messages in a table (80 character entries) and then write them out in a loop.  
e.g. the code to write the message could be (sorry , I don&#039;t know how to add comments as mono-spaced, so following will look a bit messy, please tidy up if possible):

*-----------------------------------------------------------
*        program body                                       
*-----------------------------------------------------------
         OPEN  (RECDD,OUTPUT)                               
         LHI   3,MSG#Q             Number of messages       
         LA    2,MSGTAB            Address of first message 
LOOP     MVC   REC,0(2)            Move message to REC      
         PUT   RECDD,REC           Write message for disk   
         AHI   2,MSGLENQ           Bump on to next message  
         BCT   3,LOOP              Go round till all messages output    
         CLOSE (RECDD)   

And the table could be:
*        table of 80 char messages                                     
MSGTAB   DS    0C                                                      
                                                                       
HELLOMSG DC    CL80&#039;   Assembler Hello World!   &#039;                      
MSGLENQ  EQU   *-MSGTAB                                                
NEWMSG   DC    CL80&#039;IBM Z is a complex instruction set&#039;                
      DC CL80&#039;High level languages hide complexity of system assembler&#039;
                                                                       
MSG#Q    EQU   (*-MSGTAB)/MSGLENQ]]></description>
		<content:encoded><![CDATA[<p>Hi Keven, I&#8217;m enjoying your Blog. If you, or anyone else is interested I would suggest a better way of going about Challenge # 11, is to put the messages in a table (80 character entries) and then write them out in a loop.<br />
e.g. the code to write the message could be (sorry , I don&#8217;t know how to add comments as mono-spaced, so following will look a bit messy, please tidy up if possible):</p>
<p>*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
*        program body<br />
*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
         OPEN  (RECDD,OUTPUT)<br />
         LHI   3,MSG#Q             Number of messages<br />
         LA    2,MSGTAB            Address of first message<br />
LOOP     MVC   REC,0(2)            Move message to REC<br />
         PUT   RECDD,REC           Write message for disk<br />
         AHI   2,MSGLENQ           Bump on to next message<br />
         BCT   3,LOOP              Go round till all messages output<br />
         CLOSE (RECDD)   </p>
<p>And the table could be:<br />
*        table of 80 char messages<br />
MSGTAB   DS    0C                                                      </p>
<p>HELLOMSG DC    CL80&#8242;   Assembler Hello World!   &#8216;<br />
MSGLENQ  EQU   *-MSGTAB<br />
NEWMSG   DC    CL80&#8217;IBM Z is a complex instruction set&#8217;<br />
      DC CL80&#8217;High level languages hide complexity of system assembler&#8217;</p>
<p>MSG#Q    EQU   (*-MSGTAB)/MSGLENQ</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TRS80</title>
		<link>https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/#comment-952</link>
		<dc:creator><![CDATA[TRS80]]></dc:creator>
		<pubDate>Sun, 12 Jan 2020 10:54:48 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=1388#comment-952</guid>
		<description><![CDATA[I went down the same path with the shorter message. Just went back and fixed it. Over on the Slack channel for the contest, there&#039;s a thread on this and either one is ok but extra points for using the continuation and printing the longer message.]]></description>
		<content:encoded><![CDATA[<p>I went down the same path with the shorter message. Just went back and fixed it. Over on the Slack channel for the contest, there&#8217;s a thread on this and either one is ok but extra points for using the continuation and printing the longer message.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/#comment-903</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Tue, 31 Dec 2019 16:20:49 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=1388#comment-903</guid>
		<description><![CDATA[i can not put more than 36 lines in asmhello..plz help..if i add new echo it will exceed 36 lines..can you plz help]]></description>
		<content:encoded><![CDATA[<p>i can not put more than 36 lines in asmhello..plz help..if i add new echo it will exceed 36 lines..can you plz help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/#comment-883</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Tue, 31 Dec 2019 00:22:32 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=1388#comment-883</guid>
		<description><![CDATA[Hi! K here. 
I got the &#039;system&#039; by just adding another line (another message) to the list of messages to have outputted. So I have four lines. I think it looks fine, but does anybody think I would have points taken off for not having just 3 lines?
 Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi! K here.<br />
I got the &#8216;system&#8217; by just adding another line (another message) to the list of messages to have outputted. So I have four lines. I think it looks fine, but does anybody think I would have points taken off for not having just 3 lines?<br />
 Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/#comment-838</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Fri, 27 Dec 2019 16:53:57 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=1388#comment-838</guid>
		<description><![CDATA[Thank you]]></description>
		<content:encoded><![CDATA[<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/#comment-643</link>
		<dc:creator><![CDATA[Daniel]]></dc:creator>
		<pubDate>Wed, 04 Dec 2019 22:42:21 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=1388#comment-643</guid>
		<description><![CDATA[And the next line should definitely start from the 16th column, I forgot to add this after I&#039;ve edited the message. If you need to add more lines, same process.]]></description>
		<content:encoded><![CDATA[<p>And the next line should definitely start from the 16th column, I forgot to add this after I&#8217;ve edited the message. If you need to add more lines, same process.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/#comment-642</link>
		<dc:creator><![CDATA[Daniel]]></dc:creator>
		<pubDate>Wed, 04 Dec 2019 22:39:30 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=1388#comment-642</guid>
		<description><![CDATA[This is not an error on the challenge page. They only say it once, you have to output &quot;High level languages hide complexity of system assembler&quot;. If you want to write &quot;system&quot; as well you need a non-blank continuation character on 72th of the first line. It doesn&#039;t matter if the character is right next to the statement, for example asse+
next line column 16: mbler&quot;]]></description>
		<content:encoded><![CDATA[<p>This is not an error on the challenge page. They only say it once, you have to output &#8220;High level languages hide complexity of system assembler&#8221;. If you want to write &#8220;system&#8221; as well you need a non-blank continuation character on 72th of the first line. It doesn&#8217;t matter if the character is right next to the statement, for example asse+<br />
next line column 16: mbler&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Viktor</title>
		<link>https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/#comment-639</link>
		<dc:creator><![CDATA[Viktor]]></dc:creator>
		<pubDate>Tue, 03 Dec 2019 09:04:17 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=1388#comment-639</guid>
		<description><![CDATA[Hi Kevin,

Yep, I think it is enough to put just 3rd line without system :)

I was also stuck on this task for a while, and just notice this suddenly :D

What I can say, it is assembler, maybe there is limitations of symbols or something.

But it is good, that we know reason, so others can do this challenge quicker :)

Bets regards,
Viktor]]></description>
		<content:encoded><![CDATA[<p>Hi Kevin,</p>
<p>Yep, I think it is enough to put just 3rd line without system 🙂</p>
<p>I was also stuck on this task for a while, and just notice this suddenly 😀</p>
<p>What I can say, it is assembler, maybe there is limitations of symbols or something.</p>
<p>But it is good, that we know reason, so others can do this challenge quicker 🙂</p>
<p>Bets regards,<br />
Viktor</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Akos</title>
		<link>https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/#comment-638</link>
		<dc:creator><![CDATA[Akos]]></dc:creator>
		<pubDate>Mon, 02 Dec 2019 12:12:31 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=1388#comment-638</guid>
		<description><![CDATA[Hello,
one ending character is missing from the end of this command:
call ‘z#####.load(asmhello)]]></description>
		<content:encoded><![CDATA[<p>Hello,<br />
one ending character is missing from the end of this command:<br />
call ‘z#####.load(asmhello)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevindurant</title>
		<link>https://kevindurant.be/2019/11/29/ibm-mtm-2019-part-three-challenge-11/#comment-631</link>
		<dc:creator><![CDATA[kevindurant]]></dc:creator>
		<pubDate>Sun, 01 Dec 2019 14:04:32 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=1388#comment-631</guid>
		<description><![CDATA[Hi Viktor,

Oh wow, I never noticed that they left out &quot;system&quot;. That&#039;s why I suddenly finished the challenge. I was stuck for quite a bit on this.

I don&#039;t think we need to include &quot;system&quot; as the JCL doesn&#039;t work with more characters than that. I would like to know though, but I don&#039;t think they originally wanted that.

Kind regards,
Kevin]]></description>
		<content:encoded><![CDATA[<p>Hi Viktor,</p>
<p>Oh wow, I never noticed that they left out &#8220;system&#8221;. That&#8217;s why I suddenly finished the challenge. I was stuck for quite a bit on this.</p>
<p>I don&#8217;t think we need to include &#8220;system&#8221; as the JCL doesn&#8217;t work with more characters than that. I would like to know though, but I don&#8217;t think they originally wanted that.</p>
<p>Kind regards,<br />
Kevin</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using disk: enhanced 
Minified using disk

Served from: kevindurant.be @ 2020-05-22 01:57:03 by W3 Total Cache
-->