コンパイルとリンク ― 2014年10月01日 20:17
これまでに、copy.for,getc2.for,put2.forが出てきて、copyを実行させるパーツがそろったので、 実際に、作成し実行してみます。
ソースファイルなどを格納するフォルダーは下記の通りです。
- ratfor\fortran\src -- Watcom Fortran77版のソースファイル
- ratfor\fortran\obj -- Watcom Fortran77版のソースファイルから作ったオブジェクトファイル
- ratfor\fortran\exe -- Watcom Fortran77版の実行形式ファイル
- ratfor\fortran\bat -- Watcom Fortran77版のコンパイル・リンク用バッチファイル
- ratfor\ratfor\src -- RATFOR版のソースファイル
- ratfor\ratfor\obj -- RATFOR版のソースファイルから作ったオブジェクトファイル
- ratfor\ratfor\exe -- RATFOR版の実行形式ファイル
- ratfor\ratfor\bat -- RATFOR版ののコンパイル・リンク用バッチファイル
最初に、Watcom Fortran77用の バッチファイルを作成しておきましょう。まずは、コンパイル用。fc.bat
@echo off rem fc.for wfc386 ..\src\%1.for move ..\bat\%1.obj ..\obj
リンケージ用。fl.bat
@echo off rem fl.bat wlink file ..\obj\%1.obj lib ..\obj\ratfor.lib move ..\obj\%1.exe ..\exe
オブジェクト・プログラム・ライブラリーのメンテナンス用。fo.bat
@echo off rem fo.bat wlib ..\obj\ratfor.lib -+..\obj\%1.obj
早速コンパイルしてみましょう。コマンド・プロンプトをあけて、 バッチファイルのあるディレクトリに移動して、 コンパイルします。
Microsoft Windows [Version 6.3.9600] (c) 2013 Microsoft Corporation. All rights reserved. C:\Users\Hiroya>cd Documents\ratfor\fortran\bat C:\Users\Hiroya\Documents\ratfor\fortran\bat>fc getc2 Open Watcom FORTRAN 77/32 Optimizing Compiler Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. ..\src\getc2.for: 27 ステートメント, 166 バイト, 6 拡張メッセージ, 0 警告エラー, 0 エラー 1 個のファイルを移動しました。
getc2.objをratfor.libに登録します。
C:\Users\Hiroya\Documents\ratfor\fortran\bat>fo getc2 Open Watcom Library Manager Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. Warning! '..\obj\ratfor.lib'をオープンできません - ライブラリを作成します C:\Users\Hiroya\Documents\ratfor\fortran\bat>
同様にputc2をコンパイルしratfor.libに登録します。
C:\Users\Hiroya\Documents\ratfor\fortran\bat>fc putc2 Open Watcom FORTRAN 77/32 Optimizing Compiler Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. ..\src\putc2.for: 16 ステートメント, 113 バイト, 4 拡張メッセージ, 0 警告エラー, 0 エラー 1 個のファイルを移動しました。 C:\Users\Hiroya\Documents\ratfor\fortran\bat>fo putc2 Open Watcom Library Manager Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. C:\Users\Hiroya\Documents\ratfor\fortran\bat>
copyをコンパイルし、ライブラリーとリンクします。
C:\Users\Hiroya\Documents\ratfor\fortran\bat>fc copy Open Watcom FORTRAN 77/32 Optimizing Compiler Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. ..\src\copy.for: 8 ステートメント, 35 バイト, 5 拡張メッセージ, 0 警告エラー, 0 エラー 1 個のファイルを移動しました。 C:\Users\Hiroya\Documents\ratfor\fortran\bat>fl copy Open Watcom Linker Version 1.9 Portions Copyright (c) 1985-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. オブジェクトファイルを読込み中 ライブラリを検索中 a Windows NT character-mode 実行可能 を作成中 1 個のファイルを移動しました。 C:\Users\Hiroya\Documents\ratfor\fortran\bat>
テストします。
C:\Users\Hiroya\Documents\ratfor\fortran\bat>cd ..\exe C:\Users\Hiroya\Documents\ratfor\fortran\exe>.\copy test sample test sample looooooooooooong text looooooooooooong text ^Z C:\Users\Hiroya\Documents\ratfor\fortran\exe>.\copy <..\src\copy.for c copy.for -- copy input characters to output program copy integer*1 getc integer*1 c while (getc(c) .ne. -1) do ! EOF(-1) call putc(c) end while stop end C:\Users\Hiroya\Documents\ratfor\fortran\exe>
いかがでしょうか。うまくいったでしょうか。でも、問題が一つあります。NEWLINEがくる前に EOFがくると、その行は、コピーされません。
C:\Users\Hiroya\Documents\ratfor\fortran\exe>.\copy 12345 12345 abcdef^Z C:\Users\Hiroya\Documents\ratfor\fortran\exe>
これは、read文の仕様のようです。従って読み込み行の終わりには必ずNEWLINEがくる事として、 ロジックを考えていきます。また、行の書き出し中にNEWLINEの前にEOFが出現した場合、書き出し途中の 文字列を強制的に書き出すようにします。この変更をしたputc()は、下記のとおり。
c putc3.for (extended version 2)-- put sharacter on standard output subroutine putc(c) integer*1 c integer*1 buf(80) ! MAXCARD(80) integer i,lastc data lastc/0/ if ((c .eq. -1) .and. (lastc .eq. 0)) then ! EOF(-1) return ! buffer is empty endif if ((lastc .ge. 80) .or. (c .eq. 10) .or. (c .eq. -1)) then ! MAXCARD(80) NEWLINE(10) EOF(-1) write(6,100) (buf(i),i=1,lastc) 100 format(80a1) ! MAXCARD(80) lastc = 0 endif if (c .ne. 10) then ! NEWLINE(10) lastc = lastc + 1 buf(lastc) = c endif return end
コンパイルとライブラリーへの追加は下記のとおり。
C:\Users\Hiroya\Documents\ratfor\fortran\bat>fc putc3 Open Watcom FORTRAN 77/32 Optimizing Compiler Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. ..\src\putc3.for: 19 ステートメント, 129 バイト, 4 拡張メッセージ, 0 警告エラー, 0 エラー 1 個のファイルを移動しました。 C:\Users\Hiroya\Documents\ratfor\fortran\bat>cd ..\obj C:\Users\Hiroya\Documents\ratfor\fortran\obj>wlib ratfor -putc2 +putc3 Open Watcom Library Manager Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details.
putc()が新しくなりましたので、copyを作成し直してください。
コメント
_ Plentyoffish.com Sign In ― 2015年10月18日 16:10
_ quest bar recipes cookie dough ― 2015年10月20日 06:21
_ plenty of fish dating site of free dating ― 2015年11月06日 10:10
early hours in the break of day, for the reason that i like to gain knowledge of more and more.
_ plenty of fish dating site of free dating ― 2015年11月07日 05:48
Regardless I am here now and would just like to say thanks for a incredible post and
a all round entertaining blog (I also love the theme/design), I don’t have time to read through it
all at the minute but I have book-marked it and also included your
RSS feeds, so when I have time I will be back to read a lot more,
Please do keep up the fantastic b.
_ plenty of fish dating site of free dating ― 2015年11月07日 12:31
I'm kinda paranoid about losing everything I've worked hard on.
Any recommendations?
_ krogerfeedback.com ― 2015年11月11日 20:39
my contacts will too.
_ kroger digital coupons ― 2015年11月12日 16:56
have found It absolutely helpful and it has helped me out loads.
I'm hoping to give a contribution & help
different users like its helped me. Good job.
_ kroger online coupons Sign in ― 2015年11月13日 10:00
in web explorer, might check this? IE nonetheless is the
market leader and a good component of other people will leave out your wonderful writing due to this
problem.
_ kroger coupons ― 2015年11月15日 17:34
am actually enjoying by these.
_ walmart black friday 2015 ― 2015年11月22日 15:40
page at proper place and other person will also do similar for you.
_ quest bars at costco ― 2015年11月30日 11:48
a sea shell and gave it to my 4 year old daughter and said "You can hear the ocean if you put this to your ear." She placed
the shell to her ear and screamed. There was a hermit crab inside and it pinched her
ear. She never wants to go back! LoL I know this is completely off
topic but I had to tell someone!
_ plenty of fish dating site of free dating ― 2015年12月01日 14:15
this website consists of amazing and actually fine information in favor of readers.
_ plenty of fish dating site of free dating ― 2015年12月02日 02:18
all be capable of without difficulty know it, Thanks a lot.
_ krogerfeedback.com ― 2015年12月06日 13:46
through some of the post I realized it's new to me.
Anyways, I'm definitely glad I found it and I'll be
bookmarking and checking back often!
_ kroger feedback ― 2015年12月08日 22:32
actually enjoyed the standard info an individual provide in your visitors?
Is gonna be back often to check out new
posts
_ tinyurl.com ― 2015年12月09日 19:42
your web site, how could i subscribe for a blog website?
The account helped me a acceptable deal. I had been a little bit acquainted of this your broadcast offered bright clear idea
_ quest bars ― 2016年02月09日 05:36
I truly appreciate people like you! Take care!!
_ quest bars ― 2016年02月09日 13:16
I really like all of the points you have made.
_ quest bars ― 2016年02月10日 03:50
I'll bookmark your web site and take the feeds also? I am satisfied to seek out numerous helpful information here in the
post, we'd like develop extra techniques in this regard, thank you for sharing.
. . . . .
_ Tina ― 2016年02月18日 09:17
I've a presentation subsequent week, and I'm on the
search for such information.
_ Toe ― 2016年02月22日 22:02
This post truly made my day. You can not imagine
just how much time I had spent for this information! Thanks!
_ Anne of Green Gables dvd box set ― 2016年02月23日 04:45
It is pretty worth enough for me. In my opinion, if all site owners
and bloggers made good content as you did, the net will be much more useful than ever before.|
I could not refrain from commenting. Exceptionally well written!|
I'll right away seize your rss as I can not find your e-mail
subscription hyperlink or newsletter service. Do you have any?
Please let me know in order that I could subscribe.
Thanks.|
It is appropriate time to make some plans for the future and it is time to be happy.
I have read this post and if I could I wish to suggest you some interesting
things or advice. Maybe you could write next articles referring to this article.
I wish to read even more things about it!|
It is the best time to make a few plans for the future
and it is time to be happy. I've learn this publish and if I may I wish to
suggest you some attention-grabbing issues or suggestions.
Perhaps you can write subsequent articles relating to this article.
I wish to learn even more things about it!|
I've been browsing online more than 3 hours nowadays, but I never discovered any attention-grabbing article like yours.
It's pretty price enough for me. In my opinion, if all site owners and bloggers made excellent content as you did, the internet shall be a lot more helpful than ever before.|
Ahaa, its good dialogue regarding this piece of writing here at this blog, I
have read all that, so now me also commenting at
this place.|
I am sure this piece of writing has touched all the internet users, its really
really nice piece of writing on building up new web site.|
Wow, this article is pleasant, my sister is analyzing these kinds of things, thus I am going to convey her.|
Saved as a favorite, I like your web site!|
Way cool! Some extremely valid points! I appreciate
you writing this post plus the rest of the website is also really good.|
Hi, I do believe this is a great blog. I stumbledupon it ;
) I am going to return yet again since i have book-marked it.
Money and freedom is the best way to change, may you
be rich and continue to guide others.|
Woah! I'm really enjoying the template/theme of this blog.
It's simple, yet effective. A lot of times it's very hard to get that "perfect balance" between user friendliness and appearance.
I must say you have done a awesome job with this. Additionally, the blog loads very fast for me
on Chrome. Excellent Blog!|
These are actually wonderful ideas in on the topic of blogging.
You have touched some pleasant points here. Any way keep up wrinting.|
I love what you guys are up too. This type of clever work and
reporting! Keep up the superb works guys I've included you guys to
blogroll.|
Hello! Someone in my Myspace group shared this site with us
so I came to look it over. I'm definitely loving the information. I'm book-marking and will be tweeting this to
my followers! Wonderful blog and great style and design.|
I enjoy what you guys are up too. This sort of clever work and coverage!
Keep up the amazing works guys I've added you guys to blogroll.|
Howdy would you mind sharing which blog platform
you're working with? I'm planning to start my own blog in the near future but I'm having
a hard time selecting between BlogEngine/Wordpress/B2evolution and Drupal.
The reason I ask is because your layout seems different then most blogs and
I'm looking for something unique. P.S Sorry for getting off-topic but I had to
ask!|
Hi there would you mind letting me know which hosting company you're
working with? I've loaded your blog in 3 completely different web browsers and I must say
this blog loads a lot faster then most. Can you suggest a good web
hosting provider at a fair price? Cheers, I appreciate it!|
I really like it when people come together and share views.
Great blog, continue the good work!|
Thank you for the good writeup. It in fact was a
amusement account it. Look advanced to more added agreeable
from you! However, how could we communicate?|
Howdy just wanted to give you a quick heads
up. The text in your article seem to be running
off the screen in Safari. I'm not sure if this is a formatting issue or something to do
with browser compatibility but I figured I'd post to let you know.
The layout look great though! Hope you get the issue solved soon. Thanks|
This is a topic that is close to my heart...
Take care! Exactly where are your contact details though?|
It's very straightforward to find out any matter on net
as compared to books, as I found this piece of writing at this
web site.|
Does your site have a contact page? I'm having problems locating it but, I'd like to shoot
you an e-mail. I've got some ideas for your blog you might be
interested in hearing. Either way, great blog and I look forward to seeing it develop over time.|
Hello! I've been following your weblog for a while now and finally
got the bravery to go ahead and give you a shout out from Kingwood Texas!
Just wanted to tell you keep up the excellent job!|
Greetings from Los angeles! I'm bored to tears at work so I decided to browse your site on my
iphone during lunch break. I really like the knowledge you
provide here and can't wait to take a look when I get home.
I'm shocked at how fast your blog loaded on my mobile ..
I'm not even using WIFI, just 3G .. Anyways, excellent site!|
Its like you read my mind! You seem to know a lot approximately this, such as
you wrote the guide in it or something. I feel that you just could do
with a few percent to force the message house a little bit,
but instead of that, that is fantastic blog.
A fantastic read. I will definitely be back.|
I visited various websites however the audio quality
for audio songs present at this site is really wonderful.|
Hello, i read your blog from time to time and i own a similar one and
i was just curious if you get a lot of spam remarks?
If so how do you protect against it, any plugin or anything you can advise?
I get so much lately it's driving me crazy so any help is very much appreciated.|
Greetings! Very useful advice in this particular article!
It is the little changes that will make the most important changes.
Thanks a lot for sharing!|
I seriously love your blog.. Pleasant colors & theme. Did you make
this website yourself? Please reply back as
I'm wanting to create my own personal site and would like to find out where you got this from or what the theme is named.
Thanks!|
Hi there! This post could not be written any better!
Going through this article reminds me of my previous roommate!
He continually kept preaching about this. I will forward this information to
him. Fairly certain he's going to have a good read. I
appreciate you for sharing!|
Wow! This blog looks exactly like my old one! It's on a completely different topic but it
has pretty much the same page layout and design. Superb choice of colors!|
There's certainly a lot to find out about this issue. I really like all of the points you have made.|
You made some good points there. I checked on the web for more information about the issue and found most individuals will go along with your
views on this site.|
Hi, I check your blog like every week. Your writing style is witty, keep doing what you're doing!|
I just couldn't leave your web site before suggesting
that I extremely loved the usual info an individual supply on your visitors?
Is gonna be back regularly to check out new posts|
I need to to thank you for this excellent read!!
I absolutely loved every bit of it. I have you book marked to look at new things you post…|
Hello, just wanted to say, I loved this post. It was inspiring.
Keep on posting!|
Hi there, I enjoy reading all of your post. I wanted to write a little
comment to support you.|
I constantly spent my half an hour to read this webpage's
content daily along with a mug of coffee.|
I every time emailed this web site post page to all my contacts,
because if like to read it after that my links will too.|
My coder is trying to convince me to move to .net from PHP.
I have always disliked the idea because of the expenses.
But he's tryiong none the less. I've been using Movable-type on various
websites for about a year and am concerned about switching
to another platform. I have heard fantastic things about blogengine.net.
Is there a way I can import all my wordpress content
into it? Any kind of help would be really appreciated!|
Hello! I could have sworn I've been to this website before but after going through many
of the posts I realized it's new to me. Anyways, I'm certainly happy I stumbled upon it
and I'll be bookmarking it and checking back regularly!|
Wonderful article! That is the type of information that are supposed to be shared across the internet.
Disgrace on Google for now not positioning this put up upper!
Come on over and discuss with my site . Thanks =)|
Heya i'm for the first time here. I found this board
and I find It really useful & it helped me out much. I hope to give something back and help others like you aided me.|
Howdy, I believe your blog might be having internet browser compatibility issues.
When I look at your site in Safari, it looks fine however when opening in Internet Explorer, it has some overlapping issues.
I just wanted to provide you with a quick heads up!
Apart from that, wonderful site!|
A person necessarily assist to make seriously articles I might state.
This is the very first time I frequented your website page and so far?
I amazed with the research you made to create this actual put up incredible.
Magnificent job!|
Heya i'm for the first time here. I came across this board and I
in finding It really helpful & it helped me out much.
I am hoping to offer something back and aid others like you helped me.|
Good day! I simply want to give you a huge thumbs up for the great info you've got here on this post.
I will be coming back to your web site for more soon.|
I every time used to study article in news papers but now as I am a user of net therefore from now I am using net for articles, thanks to web.|
Your means of telling the whole thing in this post is really nice, every one be capable of simply know it, Thanks a lot.|
Hi there, I discovered your blog by means of Google at
the same time as looking for a similar topic, your site came up, it seems good.
I have bookmarked it in my google bookmarks.
Hi there, just become alert to your blog via Google,
and located that it's really informative. I am gonna watch out for brussels.
I will appreciate when you proceed this in future. Many other folks might be benefited from
your writing. Cheers!|
I'm curious to find out what blog platform you are utilizing?
I'm having some minor security problems with my latest site and I'd like to find something more safe.
Do you have any solutions?|
I'm really impressed with your writing skills and also with the layout on your
weblog. Is this a paid theme or did you customize it yourself?
Either way keep up the nice quality writing, it is rare to see a nice blog
like this one these days.|
I am extremely inspired together with your writing skills as neatly as with the layout to your blog.
Is this a paid topic or did you customize it your self?
Anyway keep up the excellent high quality writing, it's uncommon to
peer a nice weblog like this one today..|
Hello, Neat post. There's an issue along with your site in internet
explorer, would check this? IE still is the market leader and a big
component of folks will miss your fantastic writing because of this problem.|
I am not sure where you're getting your information, but good topic.
I needs to spend some time learning much more or understanding more.
Thanks for great info I was looking for this information for my mission.|
Hi, i think that i saw you visited my blog so i came to “return the
favor”.I am attempting to find things to improve my website!I suppose its ok to
use {some of|a few of\
_ plenty of fish dating site of free dating ― 2016年02月23日 15:58
I've joined your rss feed and look forward to
seeking more of your wonderful post. Also, I have shared your website in my social
networks!
_ photobooth ― 2016年02月24日 04:07
Reading through this ost reminds mme of my good old room mate!
He always kept chatting about this. I will forward this page too him.
Pretty sure he will have a good read. Many thanks forr sharing!
_ gemmes clash of clans ― 2016年02月29日 16:13
I'm new to the blog world but I'm trying to get started and set up
my own. Do you require any html coding expertise to make your own blog?
Any help would be really appreciated!
_ Tshirt Prints ― 2016年02月29日 16:20
to claim that I acquire in fact loved account your blog posts.
Any way I will be subscribing on your augment or even I achievement you get right of
entry to constantly rapidly.
_ phantom 3 professional review ― 2016年02月29日 16:26
_ tomcat hosting private jvm ― 2016年02月29日 16:27
get in touch with the author? Any particular social network?
_ best online deals ― 2016年02月29日 16:32
you relied on the vikdeo to make yoour point. You
definitely know what youre talking about, why throw away your intelligence on just postijg
videos to your blog when you could be giving us something informative
to read?
_ clikc here ― 2016年02月29日 16:48
be on the internet the easiest thing to be aware of.
I say to you, I definitely get annoyed while people think about
worries that they just don't know about. You managed to hit the
nail upon the top and defined out the whole thing without
having side effect , people can take a signal. Will probably be back to get more.
Thanks
_ www.funfactorygames.biz ― 2016年02月29日 18:31
to keep a reader amused. Between your wit and your videos, I was almost
moved to start my own blog (well, almost...HaHa!) Great job.
I really loved what you had to say, and more than that,
how you presented it. Too cool!
_ youtube.com ― 2016年03月01日 01:55
right here. The sketch is attractive, your authored material stylish.
nonetheless, you command get bought an shakiness over that you wish be delivering the
following. unwell unquestionably come further formerly again as exactly the same nearly a lot often inside case
you shield this increase.
_ on respect for Ids ― 2016年03月04日 10:21
_ http://ethelylymz25blog.pages10.com/A-Secret-Weapon-For-laptop-repair-london-544910 ― 2016年03月04日 18:51
_ korfu studios korfu ferienwohnungen ― 2016年03月04日 18:52
their properties and handle bookings online.
_ study sample for financial managemet ― 2016年03月04日 21:42
_ one click android root ― 2016年03月05日 09:35
_ storkcraft gliders ― 2016年03月06日 04:25
amend your website, how could i subscribe for a weblog website?
The account aided me a acceptable deal. I had been tiny bit acquainted of this your broadcast offered vibrant clear concept
_ Broadwayweb.Co.Uk ― 2016年03月06日 04:36
_ research paper on global warmig ― 2016年03月06日 22:06
_ http://www.gotvectors.com/ ― 2016年03月07日 20:37
I will book mark your blog and keep checking for new details about once a week.
I subscribed to your Feed as well.
_ the best at home laser hair removal device ― 2016年03月11日 12:26
I'm hoping to check out the same high-grade blog posts from you in the
future as well. In fact, your creative writing abilities has motivated me to get my very own website now ;)
_ Ugee 1910 Tablet Vs Laptop Tablet Vs Smartphone 1060 Plus Windows 10 Tablet digital Art Tablet Reviews Google Pixel C Linx Tablet LCD Tablet GPU Processor Wacom Fusion5 Ugee drawing slate Neocore Fusion5 UK electronic sketch pad Tablet PC Octa Core Quad Core Dual Camera digital drawing portable computers manga creation comic design Huion Tablet Android Lollipop ― 2016年03月12日 00:37
than scale and placement on the drawing sheet that accompanied hand drafting, given that these can be adjusted as needed in the course of the creation of the final draft.
_ Ugee 1910 Tablet Vs Laptop Tablet Vs Smartphone 1060 Plus Windows 10 Tablet digital Art Tablet Reviews Google Pixel C Linx Tablet LCD Tablet GPU Processor Wacom Fusion5 Ugee drawing slate Neocore Fusion5 UK electronic sketch pad Tablet PC Octa Core Quad Core Dual Camera digital drawing portable computers manga creation comic design Huion Tablet Android Lollipop ― 2016年03月12日 02:49
had concerns when the driver computer software was not started and
the tablet hooked up prior to opening Photoshop.
_ Ugee 1910 Tablet Vs Laptop Tablet Vs Smartphone 1060 Plus Windows 10 Tablet digital Art Tablet Reviews Google Pixel C Linx Tablet LCD Tablet GPU Processor Wacom Fusion5 Ugee drawing slate Neocore Fusion5 UK electronic sketch pad Tablet PC Octa Core Quad Core Dual Camera digital drawing portable computers manga creation comic design Huion Tablet Android Lollipop ― 2016年03月13日 10:17
set to just get stuck in to either Photoshopping or coding a site,
rather than drawing it out on paper, I personally just believed that drawing it out on paper was wasting time.
_ http://cheltenhamracesbonusoffers.tumblr.com/ ― 2016年03月14日 14:53
Queen Mother Champion Chase on Ladies Day for
the duration of the Cheltenham Festival at Cheltenham
Racecourse.
_ http://cheltenhamracesfreebets.tumblr.com/ ― 2016年03月14日 15:37
racing double or single bet on any well-known sporting event, verify what the
professionals at Sports Betting Community are saying.
_ electronic sketch pad ― 2016年03月14日 16:56
Graphics object's present color.
_ Windows 10 Tablet ― 2016年03月15日 00:30
Photo models, except for the application which comes bundled with the
hardware.
_ http://cheltenhamracespromocodes.tumblr.com/ ― 2016年03月15日 09:23
thrashing the field in The Neptune Investment Chase, Vautour and Ruby Walsh winning
the JLT Novices Chase and the favourite Peace and Co bringing it property in JCB Triumph Hurdle.
※コメントの受付件数を超えているため、この記事にコメントすることができません。
トラックバック
このエントリのトラックバックURL: http://kida.asablo.jp/blog/2014/10/01/7447426/tb
最近のコメント